add method
Add a AppBarModel to the repository, cached
Implementation
@override
Future<AppBarModel> add(AppBarModel value) {
return reference.add(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}
Add a AppBarModel to the repository, cached
@override
Future<AppBarModel> add(AppBarModel value) {
return reference.add(value).then((newValue) {
fullCache[value.documentID] = newValue;
return newValue;
});
}