KAnimatedSizing.normal constructor

KAnimatedSizing.normal({
  1. required Widget child,
})

Creates an KAnimatedSizing with a normal animation duration (700ms).

Implementation

factory KAnimatedSizing.normal({required Widget child}) {
  return KAnimatedSizing(child: child);
}