SchemaConfiguration.fromJson constructor
Implementation
factory SchemaConfiguration.fromJson(Map<String, dynamic> json) {
return SchemaConfiguration(
catalogId: json['CatalogId'] as String?,
databaseName: json['DatabaseName'] as String?,
region: json['Region'] as String?,
roleARN: json['RoleARN'] as String?,
tableName: json['TableName'] as String?,
versionId: json['VersionId'] as String?,
);
}