Code & Deploy
siGit Code
Git Hosting
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@samitouri
/
QOSAMI-cakewallet
QOSAMI-cakewallet
/
lib
/
view_model
/
auth_state.dart
Code
Commits
Issues
Pulls
Sessions
CI/CD
dev
dev
dart
7 lines
181 Bytes
Copy permalink
Copy
Raw
1
import
'package:cake_wallet/core/execution_state.dart'
;
2
3
class
AuthenticationBanned
extends
ExecutionState
{
4
AuthenticationBanned
({
required
this
.
error
});
5
6
final
String
error
;
7
}