reset static method

Future<void> reset()

Implementation

static Future<void> reset() async {
  try {
    await _channel.invokeMethod('reset');
  } on PlatformException catch (e) {
    // ignore: avoid_print
    print('Failed to reset SDK: ${e.message}');
  }
}