toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final csvDelimiter = this.csvDelimiter;
  final datastoreName = this.datastoreName;
  final dateRange = this.dateRange;
  final description = this.description;
  final name = this.name;
  final outputFormat = this.outputFormat;
  return {
    'csvDelimiter': ?csvDelimiter,
    'datastoreName': ?datastoreName,
    'dateRange': ?dateRange,
    'description': ?description,
    'name': ?name,
    'outputFormat': ?outputFormat,
  };
}