show<T> static method

dynamic show<T>({
  1. String title = "权限申请说明",
  2. required String content,
})

Implementation

static show<T>({String title = "权限申请说明", required String content}) =>
    PermissionPrompt(title: title, content: content).popupDialog<T>(
        options: const DialogOptions(fromStyle: PopupFromStyle.fromTop));