toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataMapping = this.dataMapping;
  final description = this.description;
  final name = this.name;
  final parameters = this.parameters;
  final textResponseConfig = this.textResponseConfig;
  final uiConfig = this.uiConfig;
  final widgetType = this.widgetType;
  return {
    'dataMapping': ?dataMapping,
    'description': ?description,
    'name': ?name,
    'parameters': ?parameters,
    'textResponseConfig': ?textResponseConfig,
    'uiConfig': ?uiConfig,
    'widgetType': ?widgetType,
  };
}