bottomRounded method

VxBox bottomRounded({
  1. double? value,
})
inherited

Implementation

T bottomRounded({double? value}) {
  roundedValue = value ?? 15.0;
  radiusGeometry =
      BorderRadius.vertical(bottom: Radius.circular(roundedValue!));
  return _childToRound;
}