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