dispose static method

Future<void> dispose()

Implementation

static Future<void> dispose() async {
  try {
    await _channel.invokeMethod(DISPOSE_METHOD);
  } on PlatformException {
    return;
  }
}