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