addFellowship method
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;
}
}