lookup static method

CounterStyle lookup(
  1. String name
)

Lookup a predefined CounterStyle by name (used to find a fallback style)

Implementation

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