UpdateSchemaResponse.fromJson constructor
Implementation
factory UpdateSchemaResponse.fromJson(Map<String, dynamic> json) {
return UpdateSchemaResponse(
registryName: json['RegistryName'] as String?,
schemaArn: json['SchemaArn'] as String?,
schemaName: json['SchemaName'] as String?,
);
}