CardAddedSuccessfullySheet constructor

const CardAddedSuccessfullySheet({
  1. Key? key,
  2. Duration duration = const Duration(seconds: 3),
  3. int popCount = 1,
})

Implementation

const CardAddedSuccessfullySheet({
  super.key,
  this.duration = const Duration(seconds: 3),

  /// Number of routes to pop when dismissing (e.g. 2 to also close the sheet below).
  this.popCount = 1,
});