ExportSchemaResponse.fromJson constructor
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?,
);
}