animateToDateTime abstract method

  1. @override
Future<void> animateToDateTime(
  1. DateTime date, {
  2. Duration? pageDuration,
  3. Curve? pageCurve,
  4. Duration? scrollDuration,
  5. Curve? scrollCurve,
})

Animate to the date and time parts of the given DateTime.

date the DateTime to animate to.

pageDuration the Duration of the page animation.

pageCurve the Curve of the page animation.

scrollDuration the Duration of the scroll animation.

scrollCurve the Curve of the scroll animation.

scrollCurve the Curve of the scroll animation.

Implementation

@override
Future<void> animateToDateTime(
  DateTime date, {
  Duration? pageDuration,
  Curve? pageCurve,
  Duration? scrollDuration,
  Curve? scrollCurve,
});