SchemaConfiguration.fromJson constructor

SchemaConfiguration.fromJson(
  1. Map<String, dynamic> json
)

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?,
  );
}