toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (aggregationType != null) 'aggregationType': aggregationType!,
      if (dataState != null) 'dataState': dataState!,
      if (dimensionFilterGroups != null)
        'dimensionFilterGroups': dimensionFilterGroups!,
      if (dimensions != null) 'dimensions': dimensions!,
      if (endDate != null) 'endDate': endDate!,
      if (rowLimit != null) 'rowLimit': rowLimit!,
      if (searchType != null) 'searchType': searchType!,
      if (startDate != null) 'startDate': startDate!,
      if (startRow != null) 'startRow': startRow!,
      if (type != null) 'type': type!,
    };