add method
Implementation
@override
Future<FeedMenuModel> add(FeedMenuModel value) {
return feedMenuCollection
.doc(value.documentID)
.set(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}
@override
Future<FeedMenuModel> add(FeedMenuModel value) {
return feedMenuCollection
.doc(value.documentID)
.set(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}