Exif.fromJson constructor

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

Implementation

factory Exif.fromJson(Map<String, dynamic> json) {
  return Exif(
    source: json,
    make: json['make'] as String?,
    model: json['model'] as String?,
    exposureTime: json['exposure_time'] as String?,
    aperture: json['aperture'] as String?,
    focalLength: json['focal_length'] as String?,
    iso: json['iso'] as int?,
  );
}