zoom method

Future<int> zoom(
  1. double z
)

Implementation

Future<int> zoom(double z) async {
  return await _c.invokeMethod(
    'lens#zoom',
    <String, dynamic>{
      'zoom': z,
    },
  );
}