toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aperture = this.aperture;
  final cameraMake = this.cameraMake;
  final cameraModel = this.cameraModel;
  final colorSpace = this.colorSpace;
  final exposureBias = this.exposureBias;
  final exposureMode = this.exposureMode;
  final exposureTime = this.exposureTime;
  final flashUsed = this.flashUsed;
  final focalLength = this.focalLength;
  final height = this.height;
  final isoSpeed = this.isoSpeed;
  final lens = this.lens;
  final location = this.location;
  final maxApertureValue = this.maxApertureValue;
  final meteringMode = this.meteringMode;
  final rotation = this.rotation;
  final sensor = this.sensor;
  final subjectDistance = this.subjectDistance;
  final time = this.time;
  final whiteBalance = this.whiteBalance;
  final width = this.width;
  return {
    'aperture': ?aperture,
    'cameraMake': ?cameraMake,
    'cameraModel': ?cameraModel,
    'colorSpace': ?colorSpace,
    'exposureBias': ?exposureBias,
    'exposureMode': ?exposureMode,
    'exposureTime': ?exposureTime,
    'flashUsed': ?flashUsed,
    'focalLength': ?focalLength,
    'height': ?height,
    'isoSpeed': ?isoSpeed,
    'lens': ?lens,
    'location': ?location,
    'maxApertureValue': ?maxApertureValue,
    'meteringMode': ?meteringMode,
    'rotation': ?rotation,
    'sensor': ?sensor,
    'subjectDistance': ?subjectDistance,
    'time': ?time,
    'whiteBalance': ?whiteBalance,
    'width': ?width,
  };
}