wipeWallet method
Implementation
@override
Future<CCResult> wipeWallet() async {
try {
final result = await methodChannel.invokeMethod('wipe_wallet');
return CCResult.fromMap(result);
} on PlatformException catch (e) {
return CCResult(
status: Status.ERROR, message: e.message ?? 'an error occurred');
}
}