roundedDecoration method

Decoration roundedDecoration(
  1. Color color
)

Implementation

Decoration roundedDecoration(Color color) {
  return ShapeDecoration(
      color: color, shape: RoundedRectangleBorder(borderRadius: BorderRadius.all(Radius.circular(w))));
}