build method

  1. @override
Widget build(
  1. BuildContext context,
  2. bool data
)

Implementation

@override
Widget build(BuildContext context, data) {
  if (data) return onTrue ?? SizedBox();
  return onFalse ?? SizedBox();
}