rounded method

Widget rounded(
  1. double value
)

Implementation

Widget rounded(double value) => ClipRRect(
      borderRadius: BorderRadius.circular(value),
      child: this,
    );