getValue method

String? getValue(
  1. BarcodeElementKey key
)

Returns value for the given BarcodeElementKey, or empty string if it does not exist.

Implementation

String? getValue(BarcodeElementKey key) {
  return _values != null ? _values![key.index] : null;
}