deleteAllWallets method

Future<bool> deleteAllWallets()

Implementation

Future<bool> deleteAllWallets() async {
  walletsStream.add([]);
  walletRepository.deleteAll();
  return true;
}