copyWith method

ChatInviteLinkSubscriptionInfo copyWith({
  1. StarSubscriptionPricing? pricing,
  2. bool? canReuse,
  3. int? formId,
})

Implementation

ChatInviteLinkSubscriptionInfo copyWith({
  StarSubscriptionPricing? pricing,
  bool? canReuse,
  int? formId,
}) => ChatInviteLinkSubscriptionInfo(
  pricing: pricing ?? this.pricing,
  canReuse: canReuse ?? this.canReuse,
  formId: formId ?? this.formId,
);