OneTwoTransition constructor

const OneTwoTransition({
  1. Key? key,
  2. required Animation<double> animation,
  3. required Widget one,
  4. required Widget two,
})

Implementation

const OneTwoTransition({
  super.key,
  required this.animation,
  required this.one,
  required this.two,
});