getBlocksExceptHeader method

Map<String, Attribute> getBlocksExceptHeader()

Implementation

Map<String, Attribute> getBlocksExceptHeader() {
  final m = <String, Attribute>{};
  attributes.forEach((key, value) {
    if (Attribute.blockKeysExceptHeader.contains(key)) {
      m[key] = value;
    }
  });
  return m;
}