BoxAnimatingWidth constructor

const BoxAnimatingWidth({
  1. Key? key,
  2. required Widget child,
  3. double minWidth = 80.0,
  4. double? maxWidth,
  5. Duration moveDuration = const Duration(milliseconds: 3500),
  6. Duration maxHoldDuration = const Duration(seconds: 1),
  7. Duration minHoldDuration = const Duration(seconds: 1),
  8. Border? border,
})

Implementation

const BoxAnimatingWidth({
  Key? key,
  required this.child,
  this.minWidth = 80.0,
  this.maxWidth,
  this.moveDuration = const Duration(milliseconds: 3500),
  this.maxHoldDuration = const Duration(seconds: 1),
  this.minHoldDuration = const Duration(seconds: 1),
  this.border,
}) : super(key: key);