toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final catalog = this.catalog;
  final database = this.database;
  final tableName = this.tableName;
  return {
    'Catalog': catalog,
    'Database': database,
    'TableName': tableName,
  };
}