TicketCredential constructor

TicketCredential({
  1. required String ticket,
  2. String? role,
  3. String? provider,
  4. Map<String, Object?>? authExtra,
  5. Map<String, Object?>? challenge,
})

Implementation

TicketCredential({
  required this.ticket,
  this.role,
  this.provider,
  this.authExtra,
  this.challenge,
});