copy method
Implementation
ItemOptionModel copy({
String? id,
String? label,
String? itemId,
DateTime? updatedAt,
DateTime? createdAt,
}) {
return ItemOptionModel(
id: id ?? this.id,
itemId: itemId ?? this.itemId,
label: label ?? this.label,
updatedAt: updatedAt ?? this.updatedAt,
createdAt: createdAt ?? this.createdAt,
);
}