enableUpdateWindow static method

Future<void> enableUpdateWindow(
  1. bool status
)

Implementation

static Future<void> enableUpdateWindow(
  bool status,
) async {
  return _captureChannel.invokeMethod(
    _Method.enableUpdateWindow,
    <String, dynamic>{
      _Param.status: status,
    },
  );
}