rounded static method

RoundedRectangleBorder rounded([
  1. double radius = radiusMd
])

A RoundedRectangleBorder with a radius corner (default radiusMd).

Implementation

static RoundedRectangleBorder rounded([double radius = radiusMd]) =>
    RoundedRectangleBorder(borderRadius: BorderRadius.circular(radius));