ExportSchemaResponse.fromJson constructor

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

Implementation

factory ExportSchemaResponse.fromJson(Map<String, dynamic> json) {
  return ExportSchemaResponse(
    content: json['Content'] as String?,
    schemaArn: json['SchemaArn'] as String?,
    schemaName: json['SchemaName'] as String?,
    schemaVersion: json['SchemaVersion'] as String?,
    type: json['Type'] as String?,
  );
}