FileMetadata.fromJson constructor

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

Implementation

FileMetadata.fromJson(Map<String, dynamic> json) {
  exif =
      json['exif'] != null ? new FileMetadata.fromJson(json['exif']) : null;
  gps = json['gps'] != null ? new FileMetadata.fromJson(json['gps']) : null;
  height = json['height'];
  width = json['width'];
  isFull = json['isFull'];
}