withRounded static method

ShapeBorder withRounded(
  1. double radius
)

ShapeBorder with custom border radius

Implementation

static ShapeBorder withRounded(double radius) =>
    RoundedRectangleBorder(borderRadius: BorderRadius.circular(radius));