toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final boolValue = this.boolValue;
final distributionValue = this.distributionValue;
final doubleValue = this.doubleValue;
final endTime = this.endTime;
final int64Value = this.int64Value;
final labels = this.labels;
final moneyValue = this.moneyValue;
final startTime = this.startTime;
final stringValue = this.stringValue;
return {
'boolValue': ?boolValue,
'distributionValue': ?distributionValue,
'doubleValue': ?doubleValue,
'endTime': ?endTime,
'int64Value': ?int64Value,
'labels': ?labels,
'moneyValue': ?moneyValue,
'startTime': ?startTime,
'stringValue': ?stringValue,
};
}