setTextZoom method

Future<void> setTextZoom(
  1. int textZoom
)

Sets the text zoom of the page in percent.

The default is 100.

Implementation

Future<void> setTextZoom(int textZoom) =>
    _webView.settings.setTextZoom(textZoom);