TableRowAnimatedSize constructor

const TableRowAnimatedSize({
  1. Key? key,
  2. required Widget? child,
  3. AlignmentGeometry alignment = Alignment.center,
  4. Curve curve = Curves.linear,
  5. required Duration duration,
  6. Duration? reverseDuration,
  7. required TickerProvider vsync,
  8. Clip clipBehavior = Clip.hardEdge,
  9. VoidCallback? onEnd,
})

Implementation

const TableRowAnimatedSize({
  super.key,
  required super.child,
  this.alignment = Alignment.center,
  this.curve = Curves.linear,
  required this.duration,
  this.reverseDuration,
  required this.vsync,
  this.clipBehavior = Clip.hardEdge,
  this.onEnd,
});