toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final columnName = this.columnName;
  final customDimensionName = this.customDimensionName;
  final customMetricName = this.customMetricName;
  final endDate = this.endDate;
  final groupByColumn = this.groupByColumn;
  final headerText = this.headerText;
  final platformSource = this.platformSource;
  final productReportPerspective = this.productReportPerspective;
  final savedColumnName = this.savedColumnName;
  final startDate = this.startDate;
  return {
    'columnName': ?columnName,
    'customDimensionName': ?customDimensionName,
    'customMetricName': ?customMetricName,
    'endDate': ?endDate,
    'groupByColumn': ?groupByColumn,
    'headerText': ?headerText,
    'platformSource': ?platformSource,
    'productReportPerspective': ?productReportPerspective,
    'savedColumnName': ?savedColumnName,
    'startDate': ?startDate,
  };
}