toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final endTime = this.endTime;
final metadata = this.metadata;
final plugin = this.plugin;
final pluginInstance = this.pluginInstance;
final startTime = this.startTime;
final type = this.type;
final typeInstance = this.typeInstance;
final values = this.values;
return {
'endTime': ?endTime,
'metadata': ?metadata,
'plugin': ?plugin,
'pluginInstance': ?pluginInstance,
'startTime': ?startTime,
'type': ?type,
'typeInstance': ?typeInstance,
'values': ?values,
};
}