SessionContext constructor

SessionContext({
  1. required String userId,
  2. String? userName,
  3. String? userEmail,
  4. Map<String, dynamic>? userMetadata,
  5. String? sessionId,
  6. num? sessionCreationDate,
  7. bool hasRecording = false,
})

Implementation

SessionContext({
  required super.userId,
  super.userName,
  super.userEmail,
  super.userMetadata,
  this.sessionId,
  this.sessionCreationDate,
  this.hasRecording = false,
});