ImageInfo.fromMap constructor

ImageInfo.fromMap(
  1. Map<String, dynamic> json
)

Implementation

factory ImageInfo.fromMap(Map<String, dynamic> json) => ImageInfo(
      path: json['path'],
      width: json['width'],
      height: json['height'],
      orientation: json['orientation'],
      filesize: json['filesize'],
    );