bottomLeftRounded method

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

Implementation

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