copyWith method

StarSubscriptionTypeChannel copyWith({
  1. bool? canReuse,
  2. String? inviteLink,
})

Implementation

StarSubscriptionTypeChannel copyWith({bool? canReuse, String? inviteLink}) =>
    StarSubscriptionTypeChannel(
      canReuse: canReuse ?? this.canReuse,
      inviteLink: inviteLink ?? this.inviteLink,
    );