update method

Implementation

@override
Future<MemberPublicInfoModel> update(MemberPublicInfoModel value) {
  return memberPublicInfoCollection
      .doc(value.documentID)
      .update(value.toEntity().toDocument())
      .then((_) => value);
}