lookup static method

CounterStyle lookup(
  1. String name
)

Lookup a predefined CounterStyle by name (constant-time lookup)

Defaults to the 'decimal' style if no style is found with the given name.

Implementation

static CounterStyle lookup(String name) {
  return _styleMap[name] ?? _styleMap['decimal']!;
}