0 purchases
datasource
This package will help to consume a Cloud Firebase using a Generic Datasource
Usage #
You just need to implement new features, because the Datasource will provide addOrUpdate, getByid, getAll, removeById and getStream for your Datasource.
PS: Don`t forget to implement your Mapper :C
class YourDatasourceImpl extends Datasource<YourEntity> with YourMapper implements IYourDatasource {
YourDatasourceImpl() : super('events_entity');
@override
Future<String> getLastName() {
throw UnimplementedError();
}
}
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.