meta property

Map<String, dynamic> meta

Optional information from the operating system or runtime on the exception mechanism The mechanism meta data usually carries error codes reported by the runtime or operating system, along with a platform dependent interpretation of these codes. SDKs can safely omit code names and descriptions for well known error codes, as it will be filled out by Sentry. For proprietary or vendor-specific error codes, adding these values will give additional information to the user.

Implementation

Map<String, dynamic> get meta => Map.unmodifiable(_meta ?? const {});