message property
String
get
message
Implementation
String get message => when(
databaseError: (msg) => msg,
ioError: (msg) => msg,
modelLoadError: (msg) => msg,
invalidInput: (msg) => msg,
internalError: (msg) => msg,
unknown: (msg) => msg,
);