toJson method
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 date = this.date;
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 whiteBalance = this.whiteBalance;
final width = this.width;
return {
'aperture': ?aperture,
'cameraMake': ?cameraMake,
'cameraModel': ?cameraModel,
'colorSpace': ?colorSpace,
'date': ?date,
'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,
'whiteBalance': ?whiteBalance,
'width': ?width,
};
}