toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final databaseViewSpec = this.databaseViewSpec;
  final dataplexTable = this.dataplexTable;
  final type = this.type;
  return {
    'databaseViewSpec': ?databaseViewSpec,
    'dataplexTable': ?dataplexTable,
    'type': ?type,
  };
}