bottomRightRounded method

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

Implementation

T bottomRightRounded({double? value}) {
  roundedValue = value ?? 15.0;
  radiusGeometry =
      BorderRadius.only(bottomRight: Radius.circular(roundedValue!));
  return _childToRound;
}