shouldEnableInteractions method
Whether the action should be enabled or not.
Implementation
@override
bool shouldEnableInteractions(FastCalculatorBlocState state) {
if (canEnableInteractions != null) return canEnableInteractions!(state);
return state.isInitialized && state.isValid && !state.isBusy;
}