toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final customLabelData = this.customLabelData;
final placement = this.placement;
final textFormat = this.textFormat;
final type = this.type;
return {
'customLabelData': ?customLabelData,
'placement': ?placement,
'textFormat': ?textFormat,
'type': ?type,
};
}