refreshCurrentAccount method

  1. @override
Future<Result<RefreshCurrentAccountResponse, Failure>> refreshCurrentAccount()
inherited

Implementation

@override
Future<Result<RefreshCurrentAccountResponse, Failure>>
    refreshCurrentAccount() => Result.guard(
          () => _send(method: 'refreshCurrentAccount').then(
            (result) => RefreshCurrentAccountResponse.fromJson(result),
          ),
        );