toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (columnSelectionType != null)
        'columnSelectionType': columnSelectionType!,
      if (columns != null) 'columns': columns!,
      if (dataExecutionStatus != null)
        'dataExecutionStatus': dataExecutionStatus!,
      if (dataSourceId != null) 'dataSourceId': dataSourceId!,
      if (filterSpecs != null) 'filterSpecs': filterSpecs!,
      if (rowLimit != null) 'rowLimit': rowLimit!,
      if (sortSpecs != null) 'sortSpecs': sortSpecs!,
    };