rounded static method

FloretParent<ClipRRect> rounded([
  1. double rounded = 99999
])

Implementation

static FloretParent<ClipRRect> rounded([double rounded = 99999]) =>
    (Widget child) => ClipRRect(
          child: child,
          borderRadius: BorderRadius.all(Radius.circular(rounded)),
        );