border method
Implementation
Container border({
Color color = Colors.black,
double width = 1,
double radius = 8,
}) =>
copyWith(
decoration: BoxDecoration(
border: Border.all(color: color, width: width),
borderRadius: BorderRadius.circular(radius),
),
);