last static method
Implementation
static FxController? last() {
if (_history.length > 0) {
return _controllers[_history.last];
}
return null;
}
static FxController? last() {
if (_history.length > 0) {
return _controllers[_history.last];
}
return null;
}