debugBorder method

Widget debugBorder({
  1. Color color = Colors.red,
  2. double width = 1,
})

Implementation

Widget debugBorder({Color color = Colors.red, double width = 1}) => Container(
  decoration: BoxDecoration(
    border: Border.all(color: color, width: width),
  ),
  child: this,
);