Update Style class

pull/13/head
singerdmx 4 years ago
parent c32e6b0098
commit 04ed863a6d
  1. 2
      lib/models/documents/attribute.dart
  2. 14
      lib/models/documents/style.dart

@ -41,6 +41,8 @@ class Attribute<T> {
static BlockQuoteAttribute blockQuoteAttribute = BlockQuoteAttribute();
bool get isInline => scope == AttributeScope.INLINE;
static Attribute fromKeyValue(String key, dynamic value) {
if (!_registry.containsKey(key)) {
throw ArgumentError.value(key, 'key "$key" not found.');

@ -19,4 +19,18 @@ class Style {
});
return Style.attr(result);
}
Iterable<String> get keys => _attributes.keys;
Iterable<Attribute> get values => _attributes.values;
bool get isEmpty => _attributes.isEmpty;
bool get isNotEmpty => _attributes.isNotEmpty;
bool get isInline => isNotEmpty && values.every((item) => item.isInline);
Attribute get single => _attributes.values.single;
bool containsKey(String key) => _attributes.containsKey(key);
}

Loading…
Cancel
Save