Aidra Connect 10.0.2+16
Aidra Connect Mobile Application
Loading...
Searching...
No Matches
strings.dart
Go to the documentation of this file.
1abstract class Strings {
2 //global strings
3 static const appTitle = 'Aidra Connect';
4
5 //secure storage strings
6 static const String sessionKey = 'session';
7 static const String credentialsKey = 'credentials';
8 static const String tokenKey = 'token';
9 static const String collectionPointKey = 'session';
10
11 //failureMessages
12 //TODO: to be removed when intl been implemented
13 static const String serverFailureMessage =
14 "A server error occurred. Please try again later or contact support if the issue persists.";
15 static const storageFailureMessage =
16 'An error occurred while accessing device storage. Please check your device storage permission and try again';
17 static const networkFailureMessage =
18 'A network error occurred. Please check your connection and try again';
19 static const String unknownFailureMessage =
20 "An unknown error occurred. Please try again later";
21 static const String timeoutFailureMessage =
22 "The server took too long to respond. Please try again later";
23 static const String certificateFailureMessage =
24 "The server took too long to respond. Please try again later";
25 static const String connectionErrorMessage =
26 "Failed to connect to the server. Please check your internet connection and try again";
27 static const String badResponseMessage =
28 "An error occurred while processing your request. Please try again";
29 static const String biometricFailureMessage =
30 "Biometric authentication could not be completed. Make sure your device’s biometric credentials are valid and enrolled";
31}
static const String collectionPointKey
Definition strings.dart:9
static const appTitle
Definition strings.dart:3
static const String connectionErrorMessage
Definition strings.dart:25
static const String badResponseMessage
Definition strings.dart:27
static const String credentialsKey
Definition strings.dart:7
static const String serverFailureMessage
Definition strings.dart:13
static const String timeoutFailureMessage
Definition strings.dart:21
static const String certificateFailureMessage
Definition strings.dart:23
static const String sessionKey
Definition strings.dart:6
static const String biometricFailureMessage
Definition strings.dart:29
static const networkFailureMessage
Definition strings.dart:17
static const String tokenKey
Definition strings.dart:8
static const storageFailureMessage
Definition strings.dart:15
static const String unknownFailureMessage
Definition strings.dart:19