openIt static method

void openIt(
  1. BuildContext context,
  2. AppModel app,
  3. ActionSelected actionSelected,
  4. int containerPrivilege,
)

Implementation

static void openIt(BuildContext context, AppModel app,
    ActionSelected actionSelected, int containerPrivilege) {
  openFlexibleDialog(app, context, '${app.documentID}/_selectaction',
      includeHeading: false,
      widthFraction: .8,
      child: SelectActionDialog._(
        app: app,
        actionSelected: actionSelected,
        containerPrivilege: containerPrivilege,
      ));
}