AdwViewStack constructor

const AdwViewStack({
  1. Key? key,
  2. int? index,
  3. required List<Widget> children,
  4. Duration animationDuration = const Duration(milliseconds: 450),
})

Implementation

const AdwViewStack({
  Key? key,
  this.index,
  required this.children,
  this.animationDuration = const Duration(milliseconds: 450),
}) : super(key: key);