show static method
Implementation
static Future<void> show(
BuildContext context, {
required String title,
required String initialValue,
required Future<void> Function(String) onSave,
String? label,
String? suffix,
String? description,
}) {
return VDailog.showDialog<void>(
context: context,
dismissible: false,
builder: (ctx, style, animation) => TextEditDialog(
title: title,
initialValue: initialValue,
onSave: onSave,
label: label,
suffix: suffix,
description: description,
),
);
}