SecureAPIClient constructor

SecureAPIClient({
  1. required APIClient client,
  2. required String token,
  3. String authHeaderKey = "Authorization",
  4. String authTokenPrefix = "Bearer",
})

Implementation

SecureAPIClient(
    {required this.client,
    required this.token,
    this.authHeaderKey = "Authorization",
    this.authTokenPrefix = "Bearer"});