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