show<T> static method
- BuildContext context, {
- bool timeout = false,
- required UserPhone phone,
Displays a AddPhoneView wrapped in a ModalPopup.
Implementation
static Future<T?> show<T>(
BuildContext context, {
bool timeout = false,
required UserPhone phone,
}) {
return ModalPopup.show(
context: context,
child: AddPhoneView(timeout: timeout, phone: phone),
);
}