technicalMessage property
String
get
technicalMessage
The technical details for debugging (same as original message).
Implementation
String get technicalMessage {
return when(
databaseError: (msg) => msg,
ioError: (msg) => msg,
modelLoadError: (msg) => msg,
invalidInput: (msg) => msg,
staleSearchHandle: (msg) => msg,
concurrentMutation: (msg) => msg,
internalError: (msg) => msg,
unsupportedMigrationVersion: (axis, stored, supported) =>
'UnsupportedMigrationVersion(axis=$axis, stored=$stored, supported=$supported)',
embeddingFingerprintMismatch: (stored, current, remaining) =>
'EmbeddingFingerprintMismatch(stored=$stored, current=$current, remaining=$remaining)',
unknown: (msg) => msg,
);
}