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