update method

Implementation

@override
Future<MemberProfileModel> update(MemberProfileModel value) {
  return memberProfileCollection
      .doc(value.documentID)
      .update(value.toEntity(appId: appId).toDocument())
      .then((_) => value);
}