state property
StreamController<CLCmdFileHandleState> ?
get
state
Implementation
static StreamController<CLCmdFileHandleState>? get state {
if (updater == null) {
return null;
}
switch (updater!.type) {
case 13:
return _otaStateCtl;
case 37:
return _clockfaceStateCtl;
case 38:
return _ephmerisStateCtl;
default:
return null;
}
}