currentDigitEntryState property Null safety
Implementation
DigitEntry? get currentDigitEntryState {
ControllerState s = state;
if (s is DigitEntry) {
return s;
} else {
return null;
}
}
DigitEntry? get currentDigitEntryState {
ControllerState s = state;
if (s is DigitEntry) {
return s;
} else {
return null;
}
}