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