Box.b constructor
Adding .b
to the box will make it blue.
Use this for debugging purposes only.
This constructor is marked as deprecated so that you don't forget to remove it.
Implementation
@Deprecated("Use this for debugging purposes only.")
const Box.b({
Key? key,
bool show = true,
// ignore: avoid_unused_constructor_parameters
Color? color,
EdgeInsetsGeometry? padding,
double? width,
double? height,
Alignment? alignment,
Widget? child,
bool removePaddingWhenNoChild = false,
}) : this(
key: key,
show: show,
color: Colors.blue,
padding: padding,
width: width,
height: height,
alignment: alignment,
child: child,
removePaddingWhenNoChild: removePaddingWhenNoChild,
);