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