update method

Implementation

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