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