onTrueWidget method

Widget onTrueWidget(
  1. BuildContext context
)

Implementation

Widget onTrueWidget(BuildContext context) {
  if (onTrue != null) {
    return onTrue!(context);
  } else {
    return SizedBox();
  }
}