parse method
Parse the result from Isar to Brambl
Internal use only
Implementation
@override
List<brambl.WalletFellowship> parse(List<WalletFellowship?> entities) {
return entities.isNotEmpty
? (entities as List<WalletFellowship>).map((e) => e.asBrambl).toList()
: [];
}