toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final containerId = this.containerId;
final dateRangeConfig = this.dateRangeConfig;
final description = this.description;
final displayName = this.displayName;
final filter = this.filter;
final height = this.height;
final widgets = this.widgets;
final width = this.width;
return {
'containerId': ?containerId,
'dateRangeConfig': ?dateRangeConfig,
'description': ?description,
'displayName': ?displayName,
'filter': ?filter,
'height': ?height,
'widgets': ?widgets,
'width': ?width,
};
}