issueTicketToken method
Implementation
Future<ConnectanumHttpAuthGrant> issueTicketToken({
required String realm,
required String authId,
required String ticket,
Map<String, String> headers = const <String, String>{},
}) {
return authenticate(
realm: realm,
authId: authId,
authentication: TicketAuthentication(ticket),
authMethod: 'ticket',
headers: headers,
);
}