open method
Animates the sheet to a fully open state.
duration: Optional duration for the opening animation.
Implementation
void open({Duration? duration}) {
if (isClosed) {
_animateOpen(duration: duration);
}
}
Animates the sheet to a fully open state.
duration: Optional duration for the opening animation.void open({Duration? duration}) {
if (isClosed) {
_animateOpen(duration: duration);
}
}