dev
dart 13 lines 352 Bytes
Raw
1 import 'package:cake_wallet/src/screens/setup_2fa/setup_2fa_enter_code_page.dart';
2
3 class TotpAuthArgumentsModel {
4 final bool? isForSetup;
5 final bool? isClosable;
6 final OnTotpAuthenticationFinished? onTotpAuthenticationFinished;
7
8 TotpAuthArgumentsModel({
9 this.isForSetup,
10 this.isClosable,
11 this.onTotpAuthenticationFinished,
12 });
13 }