toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final tableSourceType = this.tableSourceType;
  final tableSpec = this.tableSpec;
  final viewSpec = this.viewSpec;
  return {
    'tableSourceType': ?tableSourceType,
    'tableSpec': ?tableSpec,
    'viewSpec': ?viewSpec,
  };
}