setAttribute method
Implementation
void setAttribute(EIRType? type, Uint8List value) {
if (!EIR.typeNumMap.containsKey(type)) {
throw ArgumentError(
"EIR type $type is not supported, please select one from ${EIRType.values}");
}
attributes[type!] = value;
}