borderIs method

Container borderIs({
  1. Color color = const Color(0xff95d9f1),
  2. double width = 1,
  3. double radius = 0,
})

add border

Implementation

Container borderIs({Color color = const Color(0xff95d9f1), double width = 1, double radius = 0}) {
  return border(color: color, width: width, radius: radius);
}