showReedemTokenDialog function

Future<bool> showReedemTokenDialog(
  1. dynamic context,
  2. dynamic ref,
  3. String superInviteToken
)

Implementation

Future<bool> showReedemTokenDialog(
  BuildContext context,
  WidgetRef ref,
  String superInviteToken,
) async {
  return await showDialog(
    context: context,
    builder: (BuildContext context) =>
        _ShowRedeemTokenDialog(token: superInviteToken),
  );
}