copyWith method

ImageSourceProperties copyWith(
  1. String? url,
  2. List<List>? coordinates
)

Implementation

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