authorizationHeader property

String? get authorizationHeader

Gets the authorization header value

Implementation

String? get authorizationHeader {
  if (accessToken == null) return null;
  return '$tokenType $accessToken';
}