update method
Implementation
@override
Future<BookletModel> update(BookletModel value) {
return bookletCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}
@override
Future<BookletModel> update(BookletModel value) {
return bookletCollection
.doc(value.documentID)
.update(value.toEntity(appId: appId).toDocument())
.then((_) => value);
}