copyWith method
Implementation
PremiumLimit copyWith({
PremiumLimitType? type,
int? defaultValue,
int? premiumValue,
}) => PremiumLimit(
type: type ?? this.type,
defaultValue: defaultValue ?? this.defaultValue,
premiumValue: premiumValue ?? this.premiumValue,
);