zoom method

Future<void> zoom(
  1. double step
)

change zoom by specific step.

Implementation

Future<void> zoom(double step) async {
  await _channel.invokeMethod<void>('zoom', <String, dynamic>{'step': step});
}