custom static method
Creates a custom authorization header.
Example:
final res = await client.get(
'/api',
headers: AuthHelper.custom('ApiKey', 'my-api-key'),
);
Implementation
static Map<String, String> custom(String scheme, String credentials) => {
'authorization': '$scheme $credentials',
};