MAnimateFadeContent constructor

const MAnimateFadeContent({
  1. required bool visible,
  2. required Widget child,
  3. bool containReverse = true,
  4. int? milliseconds,
  5. Key? key,
})

Implementation

const MAnimateFadeContent({
  required this.visible,
  required this.child,
  this.containReverse = true,
  this.milliseconds,
  super.key,
});