otherwise method
Implementation
void otherwise(
void Function(TransitionHandlerBuilder) buildOtherwise, {
String? label,
}) {
var otherwiseBuilder = TransitionHandlerBuilder._(_forState);
buildOtherwise(otherwiseBuilder);
_conditions.add(_TransitionCondition((_) => true, otherwiseBuilder._handler!, label));
}