zoomOut method

void zoomOut()

Implementation

void zoomOut() {
  const method = '/zoomOut';
  try {
    _channel.invokeMethod(method);
  } on PlatformException catch (e) {
    if(kDebugMode) print(e);
  }
}