ModulaExpandIn constructor

const ModulaExpandIn({
  1. required Widget child,
  2. Key? key,
  3. Duration duration = const Duration(milliseconds: 300),
  4. Curve curve = Curves.easeInOut,
  5. bool expand = true,
})

Implementation

const ModulaExpandIn({
  required this.child,
  super.key,
  this.duration = const Duration(milliseconds: 300),
  this.curve = Curves.easeInOut,
  this.expand = true,
});