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