VideoSourceProperties.fromJson constructor

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

Implementation

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