tryParse static method

RuleId? tryParse(
  1. String value
)

Implementation

static RuleId? tryParse(String value) =>
    _isCanonical(value) ? RuleId(value) : null;