DeleteSchemaResponse.fromJson constructor

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

Implementation

factory DeleteSchemaResponse.fromJson(Map<String, dynamic> json) {
  return DeleteSchemaResponse(
    schemaArn: json['SchemaArn'] as String?,
    schemaName: json['SchemaName'] as String?,
    status: (json['Status'] as String?)?.toSchemaStatus(),
  );
}