copyWith method
Implementation
PlanFeature copyWith({
String? createdAt,
String? id,
String? identifier,
Object? important,
String? name,
String? planId,
int? position,
String? updatedAt,
int? value,
}) {
return PlanFeature(
createdAt: createdAt ?? this.createdAt,
id: id ?? this.id,
identifier: identifier ?? this.identifier,
important: important ?? this.important,
name: name ?? this.name,
planId: planId ?? this.planId,
position: position ?? this.position,
updatedAt: updatedAt ?? this.updatedAt,
value: value ?? this.value,
);
}