PaymentInProgress constructor

const PaymentInProgress(
  1. {Key? key,
  2. required bool canGoBack,
  3. required VoidCallback onPressed}
)

Implementation

const PaymentInProgress({
  Key? key,
  required this.canGoBack,
  required this.onPressed,
}) : super(key: key);