toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final detectionStatus = this.detectionStatus;
  final latestCaptureDate = this.latestCaptureDate;
  return {
    'detectionStatus': ?detectionStatus,
    'latestCaptureDate': ?latestCaptureDate,
  };
}