initCryptoLib method

Future<bool> initCryptoLib()

Implementation

Future<bool> initCryptoLib() async {
  await walletRepository.readAll().then((wallets) {
    walletsStream.add(wallets);
  });
  return true;
}