showRecoveryKeyDialog function

void showRecoveryKeyDialog(
  1. dynamic context,
  2. dynamic ref,
  3. String recoveryKey
)

Implementation

void showRecoveryKeyDialog(
  BuildContext context,
  WidgetRef ref,
  String recoveryKey,
) {
  showDialog(
    context: context,
    builder: (BuildContext context) => _ShowRecoveryDialog(recoveryKey),
  );
}