update method

Implementation

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