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