open method
Implementation
void open(BuildContext context) {
ToastTheme t = ArcaneTheme.of(context).toast;
PylonBuilder builder = Pylon.mirror(context, (context) => this);
showToast(
context: context,
location: location ?? t.location,
showDuration: showDuration ?? t.showDuration,
dismissible: dismissible,
entryDuration: entryDuration ?? t.entryDuration,
curve: Curves.easeOutExpo,
builder: (context, overlay) => Builder(builder: builder));
}