High.fromJson constructor

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

Implementation

factory High.fromJson(Map<String, dynamic> json) => High(
      url: json['url'] as String?,
      width: json['width'] as int?,
      height: json['height'] as int?,
    );