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