toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final existingSchema = this.existingSchema;
  final newSchema = this.newSchema;
  final sampledDataLocations = this.sampledDataLocations;
  final schemaChange = this.schemaChange;
  final table = this.table;
  return {
    'existingSchema': ?existingSchema,
    'newSchema': ?newSchema,
    'sampledDataLocations': ?sampledDataLocations,
    'schemaChange': ?schemaChange,
    'table': ?table,
  };
}