StopContinuousExportResponse.fromJson constructor

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

Implementation

factory StopContinuousExportResponse.fromJson(Map<String, dynamic> json) {
  return StopContinuousExportResponse(
    startTime: timeStampFromJson(json['startTime']),
    stopTime: timeStampFromJson(json['stopTime']),
  );
}