toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final outputSchema = this.outputSchema;
  final storagePath = this.storagePath;
  final table = this.table;
  return {
    'outputSchema': ?outputSchema,
    'storagePath': ?storagePath,
    'table': ?table,
  };
}