onFalseWidget method

Widget onFalseWidget(
  1. BuildContext context
)

Implementation

Widget onFalseWidget(BuildContext context) {
  if (onFalse != null) {
    return onFalse!(context);
  } else {
    return SizedBox();
  }
}