getScale method

Future<double> getScale()

Get the page scale

example:

double scaleValue = await _controller.getScale();

Implementation

Future<double> getScale() async {
  return await _channel.invokeMethod('get_scale');
}