show static method
Implementation
static Future<List<Node>?> show({
required List<Node> nodes,
Map? formValues,
List<Node>? selected,
}) {
return SmartDialog.show(
alignment: Alignment.bottomCenter,
builder: (ctx) {
return NodePickerDialog._(
nodes: nodes,
formValues: formValues,
selected: selected,
);
},
);
}