PictureInfo.fromJson constructor

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

Implementation

PictureInfo.fromJson(Map<String, dynamic> json) {
  uuid = json['uuid'];
  type = json['type'];
  size = json['size'];
  width = json['width'];
  height = json['height'];
  url = json['url'];
}