NestedSideSheet constructor

const NestedSideSheet({
  1. Key? key,
  2. required Widget child,
  3. Duration settleDuration = _kBaseSettleDuration,
  4. Duration reverseSettleDuration = _kBaseSettleDuration,
  5. Color scrimColor = Colors.black54,
  6. DecorationBuilder? decorationBuilder,
})

Implementation

const NestedSideSheet({
  Key? key,
  required this.child,
  this.settleDuration = _kBaseSettleDuration,
  this.reverseSettleDuration = _kBaseSettleDuration,
  this.scrimColor = Colors.black54,
  this.decorationBuilder,
}) : super(key: key);