copyWith method
Implementation
FeaturesId copyWith({
num? id,
String? name,
String? status,
String? createdAt,
String? updatedAt,
}) =>
FeaturesId(
id: id ?? this.id,
name: name ?? this.name,
status: status ?? this.status,
createdAt: createdAt ?? this.createdAt,
updatedAt: updatedAt ?? this.updatedAt,
);