tryParse static method

ControlId? tryParse(
  1. String value
)

Implementation

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