ExpandableTableRow constructor

const ExpandableTableRow({
  1. Key? key,
  2. required TickerProvider vsync,
  3. required Duration duration,
  4. Curve curve = Curves.easeInOut,
  5. required bool expanded,
  6. required Widget child,
  7. required Widget expandedChild,
})

Implementation

const ExpandableTableRow({
  super.key,
  required this.vsync,
  required this.duration,
  this.curve = Curves.easeInOut,
  required this.expanded,
  required this.child,
  required this.expandedChild,
});