InvalidEventException constructor

const InvalidEventException({
  1. String? recoverySuggestion,
  2. Object? underlyingException,
})

Exception when event data is invalid and cannot be sent to the server.

Implementation

const InvalidEventException({
  super.recoverySuggestion,
  super.underlyingException,
}) : super(
        'Invalid event data.',
      );