show method
Implementation
void show(BuildContext context, ModalTriggerFn builder) {
showDialog(
context: context,
builder: (context) {
return builder(
context,
() => close(context),
);
},
);
}
void show(BuildContext context, ModalTriggerFn builder) {
showDialog(
context: context,
builder: (context) {
return builder(
context,
() => close(context),
);
},
);
}