CreateSessionResponse constructor

CreateSessionResponse({
  1. required String sessionId,
  2. required String url,
  3. String? qrBase64Png,
  4. Branding? branding,
  5. required String websocketURL,
})

Implementation

CreateSessionResponse({
  required this.sessionId,
  required this.url,
  this.qrBase64Png,
  this.branding,
  required this.websocketURL,
});