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