attach method
Implementation
void attach({
VoidCallback? open,
VoidCallback? close,
VoidCallback? toggle,
bool Function()? isReady,
}) {
_open = open;
_close = close;
_toggle = toggle;
_isReady = isReady;
}
void attach({
VoidCallback? open,
VoidCallback? close,
VoidCallback? toggle,
bool Function()? isReady,
}) {
_open = open;
_close = close;
_toggle = toggle;
_isReady = isReady;
}