ControlId.parse constructor
ControlId.parse(
- String value
Implementation
factory ControlId.parse(String value) {
if (!_isCanonical(value)) {
throw FormatException('Invalid ControlId: $value');
}
return ControlId(value);
}