CustomAnimatedSwitcher constructor

const CustomAnimatedSwitcher({
  1. required Widget child,
  2. Key? key,
  3. Duration duration = const Duration(milliseconds: 200),
})

构造函数

Implementation

const CustomAnimatedSwitcher({
  required this.child,
  super.key,
  this.duration = const Duration(milliseconds: 200),
});