getHeaderValue method
Retrieves the authentication key in a format that can be used in a transport header.
The format conversion is performed by toHeaderValue.
Implementation
Future<String?> getHeaderValue() async {
String? key = await get();
return toHeaderValue(key);
}