copyWith method
Implementation
ImageSourceProperties copyWith(
String? url,
List<List>? coordinates,
) {
return ImageSourceProperties(
url: url ?? this.url,
coordinates: coordinates ?? this.coordinates,
);
}
ImageSourceProperties copyWith(
String? url,
List<List>? coordinates,
) {
return ImageSourceProperties(
url: url ?? this.url,
coordinates: coordinates ?? this.coordinates,
);
}