MontageAnimation constructor

const MontageAnimation({
  1. required Duration duration,
  2. String? key,
  3. Curve curve = Curves.easeInOut,
})

Implementation

const MontageAnimation({
  required this.duration,
  this.key,
  this.curve = Curves.easeInOut,
});