resetSession method
Implementation
@override
Future<void> resetSession() async {
try {
return CoinbaseWalletSDK.shared.resetSession();
} catch (e, s) {
_core.logger.e('[$runtimeType] resetSession $e');
throw CoinbaseServiceException('Reset session error', e, s);
}
}