circleBorder method

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

add Circle border

Implementation

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