rootCon property
Returns 'the first' StateXController associated with this StateX object. Returns null if empty.
Implementation
@override
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.
@override
StateXController? get rootCon {
final list = controllerList;
return list.isEmpty ? null : list.first;
}