show<T> static method

Future<T?> show<T>(
  1. BuildContext context, {
  2. bool timeout = false,
  3. 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),
  );
}