getAttribute method

Uint8List? getAttribute(
  1. EIRType type
)

Implementation

Uint8List? getAttribute(EIRType type) {
  return attributes.containsKey(type) ? attributes[type] : null;
}