allDeviceHeight static method

Widget allDeviceHeight(
  1. BuildContext context, {
  2. Color? color,
})

Implementation

static Widget allDeviceHeight (BuildContext context, {Color? color }) {
  color ??= Colors.transparent;
  return colored( 0, DeviceTools.getHeight(context) , color);
}