AmwalPayBottomSheet constructor

const AmwalPayBottomSheet({
  1. Key? key,
  2. required Widget child,
  3. double heightFactor = 0.9,
  4. bool isDismissible = false,
  5. bool showDragHandle = false,
  6. double borderRadius = 24.0,
  7. VoidCallback? onDismissed,
})

Implementation

const AmwalPayBottomSheet({
  Key? key,
  required this.child,
  this.heightFactor = 0.9,
  this.isDismissible = false,
  this.showDragHandle = false,
  this.borderRadius = 24.0,
  this.onDismissed,
}) : super(key: key);