topRightRounded method

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

Implementation

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