ClipRRect constructor

ClipRRect({
  1. Widget? child,
  2. double horizontalRadius = 0,
  3. double verticalRadius = 0,
})

Implementation

ClipRRect({
  Widget? child,
  this.horizontalRadius = 0,
  this.verticalRadius = 0,
}) : super(child: child);