CancelBookingDialog constructor

const CancelBookingDialog({
  1. Key? key,
  2. required double refundAmount,
  3. required double cancellationFee,
  4. required void onConfirm(),
  5. bool isDialog = true,
})

Implementation

const CancelBookingDialog({
  super.key,
  required this.refundAmount,
  required this.cancellationFee,
  required this.onConfirm,
  this.isDialog = true,
});