SessionError constructor

SessionError({
  1. required String message,
  2. String? sessionId,
  3. String errorId = 'session_error',
  4. String? suggestion,
})

Implementation

SessionError({
  required this.message,
  this.sessionId,
  this.errorId = 'session_error',
  this.suggestion,
});