toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final formattedType = this.formattedType;
final metadata = this.metadata;
final type = this.type;
final value = this.value;
return {
'displayName': ?displayName,
'formattedType': ?formattedType,
'metadata': ?metadata,
'type': ?type,
'value': ?value,
};
}