updateEntity method
Implementation
@override
Future<BookletEntity> updateEntity(String documentID, BookletEntity value) {
return bookletCollection
.doc(documentID)
.update(value.toDocument())
.then((_) => value);
}
@override
Future<BookletEntity> updateEntity(String documentID, BookletEntity value) {
return bookletCollection
.doc(documentID)
.update(value.toDocument())
.then((_) => value);
}