open static method
void
open(
- BuildContext context,
- AppModel app,
- String ownerId,
- List<
String> readAccess, - String title,
- UpdatedHtml updatedHtml,
- 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,
));
}