topRounded method

VxCard topRounded({
  1. double? value,
})
inherited

Implementation

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