KeyboardAvoider constructor
KeyboardAvoider({})
Implementation
KeyboardAvoider({
Key? key,
required this.child,
this.physics,
this.duration = BottomAreaAvoider.defaultDuration,
this.curve = BottomAreaAvoider.defaultCurve,
this.autoScroll = BottomAreaAvoider.defaultAutoScroll,
this.overscroll = BottomAreaAvoider.defaultOverscroll,
}) : assert(child is ScrollView ? child.controller != null : true),
super(key: key);