copyWith method
Implementation
Image copyWith({
String? idiom,
String? filename,
String? scale,
List<Map<String, dynamic>>? appearances,
}) =>
Image(
idiom: idiom ?? this.idiom,
filename: filename ?? this.filename,
scale: scale ?? this.scale,
appearances: appearances ?? this.appearances,
);