ErrorEvent constructor

ErrorEvent({
  1. required String relayUrl,
  2. required ErrorType errorType,
  3. required int attemptNumber,
  4. required DateTime timestamp,
  5. String? errorMessage,
})

Implementation

ErrorEvent({
  required this.relayUrl,
  required this.errorType,
  required this.attemptNumber,
  required this.timestamp,
  this.errorMessage,
});