Range.fromJson constructor

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

Implementation

Range.fromJson(Map<String, dynamic> json) {
  start = json['start'] != null ? new Start.fromJson(json['start']) : null;
  end = json['end'] != null ? new Start.fromJson(json['end']) : null;
}