copyWith method

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

Implementation

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