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,
    internalError: (msg) => msg,
    unknown: (msg) => msg,
  );
}