SynchronizedDoubleSheet constructor

const SynchronizedDoubleSheet({
  1. Key? key,
  2. required DoubleSheetConfig config,
  3. required Widget child,
  4. VoidCallback? onClose,
  5. Animation<double>? animation,
})

Implementation

const SynchronizedDoubleSheet({
  super.key,
  required this.config,
  required this.child,
  this.onClose,
  this.animation,
});