toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final gpsEndTime = this.gpsEndTime;
final gpsStartTime = this.gpsStartTime;
final videoEndTime = this.videoEndTime;
final videoStartTime = this.videoStartTime;
return {
'gpsEndTime': ?gpsEndTime,
'gpsStartTime': ?gpsStartTime,
'videoEndTime': ?videoEndTime,
'videoStartTime': ?videoStartTime,
};
}