rootCon property
Returns 'the first' StateXController associated with this StateX object. Returns null if empty.
Implementation
StateXController? get rootCon {
final list = _controllerList;
return list.isEmpty ? null : list.first;
}
Returns 'the first' StateXController associated with this StateX object. Returns null if empty.
StateXController? get rootCon {
final list = _controllerList;
return list.isEmpty ? null : list.first;
}