ImageSourceProperties.fromJson constructor

ImageSourceProperties.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ImageSourceProperties.fromJson(Map<String, dynamic> json) {
  return ImageSourceProperties(
    url: json['url'],
    coordinates: json['coordinates'],
  );
}