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