copyWith method
Implementation
ChatRecipe copyWith({
String? imageUrl,
String? name,
String? id,
String? deviceModelIds,
String? langDesc,
}) =>
ChatRecipe(
imageUrl: imageUrl ?? this.imageUrl,
name: name ?? this.name,
id: id ?? this.id,
deviceModelIds: deviceModelIds ?? this.deviceModelIds,
langDesc: langDesc ?? this.langDesc,
);