topLeftRounded method

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

Implementation

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