addFellowship method

  1. @override
Future<int> addFellowship(
  1. WalletFellowship walletEntity
)

Add a new fellowship.

walletFellowship The wallet entity to add.

Implementation

@override
Future<int> addFellowship(brambl.WalletFellowship walletEntity) {
  try {
    return walletFellowshipsStore.add(_instance, walletEntity.asSK.toSembast);
  } catch (e) {
    rethrow;
  }
}