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