toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final deployment = this.deployment;
final duration = this.duration;
final labels = this.labels;
final name = this.name;
final profileBytes = this.profileBytes;
final profileType = this.profileType;
final startTime = this.startTime;
return {
'deployment': ?deployment,
'duration': ?duration,
'labels': ?labels,
'name': ?name,
'profileBytes': ?profileBytes,
'profileType': ?profileType,
'startTime': ?startTime,
};
}