showOrgDialog method
Shows the organization update dialog.
Implementation
void showOrgDialog() {
showDialog(
context: context,
builder: (context) {
return UpdateOrgDialog(callback: updateOrg);
},
barrierDismissible: false,
);
}