metadata property

Map<String, dynamic>? metadata
final

Optional custom metadata attached to the snapshot.

This can be used to store additional information about the snapshot, such as bug IDs, reporter names, or other contextual information.

Must be JSON-serializable (Map, List, primitives).

Example:

{
  'bug_id': 'BUG-123',
  'reporter': 'John Doe',
  'description': 'User cannot login',
}

Implementation

final Map<String, dynamic>? metadata;