fromJson static method

ImageItem fromJson(
  1. Map json
)

Implementation

static ImageItem fromJson(Map json) {
  var image = ImageItem(json['image']);

  image.width = json['width'];
  image.height = json['height'];

  return image;
}