toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connection = this.connection;
  final location = this.location;
  final project = this.project;
  final tableType = this.tableType;
  return {
    'connection': ?connection,
    'location': ?location,
    'project': ?project,
    'tableType': ?tableType,
  };
}