open static method

void open(
  1. BuildContext context,
  2. AppModel app,
  3. String ownerId,
  4. List<String> readAccess,
  5. String title,
  6. UpdatedHtml updatedHtml,
  7. String initialValue,
)

Implementation

static void open(
    BuildContext context,
    AppModel app,
    String ownerId,
    List<String> readAccess,
    String title,
    UpdatedHtml updatedHtml,
    String initialValue) {
  openWidgetDialog(app, context, '${app.documentID}/multilinetext',
      child: MultilineTextDialog(
        title: title,
        updatedHtml: updatedHtml,
        initialValue: initialValue,
        app: app,
        ownerId: ownerId,
        readAccess: readAccess,
      ));
}