FixedHeight.fromJson constructor
FixedHeight.fromJson(
- Map<String, dynamic> json
)
Implementation
factory FixedHeight.fromJson(Map<String, dynamic> json) => FixedHeight(
height: json['height'] as String?,
width: json['width'] as String?,
size: json['size'] as String?,
url: json['url'] as String?,
mp4Size: json['mp4_size'] as String?,
mp4: json['mp4'] as String?,
webpSize: json['webp_size'] as String?,
webp: json['webp'] as String?,
frames: json['frames'] as String?,
hash: json['hash'] as String?,
);