componentID property

String get componentID

Returns the component ID.

❗️ Use after the component is loaded.

Implementation

String get componentID {
  if (_componentID == null) {
    throw Exception(
        'Component ID is null. Use after the component is loaded correctly.');
  }
  return _componentID!;
}