setMirror method

Future<void> setMirror(
  1. bool mirror
)

Implementation

Future<void> setMirror(bool mirror) async {
  Map<String, Object> values = Map();
  values["mirror"] = mirror;

  return _channel.invokeMethod(SET_MIRROR_METHOD, values);
}