TableIdentifier.fromJson constructor
Implementation
factory TableIdentifier.fromJson(Map<String, dynamic> json) {
return TableIdentifier(
catalogId: json['CatalogId'] as String?,
databaseName: json['DatabaseName'] as String?,
name: json['Name'] as String?,
);
}