getWallets method

Future<List<Wallet>> getWallets()

Get all wallets currently known to the usecase.

Implementation

Future<List<Wallet>> getWallets() async {
  await _initializationFuture;
  return _wallets.toList();
}