UlOrOLNode constructor

UlOrOLNode(
  1. String tag,
  2. Map<String, String> attribute,
  3. ListConfig config,
  4. WidgetVisitor visitor,
)

Implementation

UlOrOLNode(this.tag, this.attribute, this.config, this.visitor) {
  start = (int.tryParse(attribute['start'] ?? '') ?? 1) - 1;
}