Standard.fromJson constructor

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

Implementation

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