setCameraZoomFactor method

Future<int> setCameraZoomFactor (
  1. int factor
)

设置缩放

Implementation

Future<int> setCameraZoomFactor(int factor) async {
  assert(factor != null);
  IntValue reply = await _api.setCameraZoomFactor(IntValue()..value = factor);
  return reply.value;
}