ErrorMessageConfig constructor
const
ErrorMessageConfig({
- String serverUnreachable = 'Server unreachable',
- String maintenance = 'Server maintenance - try again later',
- String connectionTimeout = 'Server connection timed out - check your connection',
- String connectionError = 'Failed to connect to server - check your connection',
- String offline = 'You seem to be offline',
- String serverFault = 'Server fault - work in progress',
Implementation
const ErrorMessageConfig({
this.serverUnreachable = 'Server unreachable',
this.maintenance = 'Server maintenance - try again later',
this.connectionTimeout =
'Server connection timed out - check your connection',
this.connectionError =
'Failed to connect to server - check your connection',
this.offline = 'You seem to be offline',
this.serverFault = 'Server fault - work in progress',
});