headers property

Headers that are used for multiple Calls

Implementation

@visibleForTesting
Map<String, String> get headers => (<String, String?>{
      HttpHeaders.authorizationHeader: _authenticator.header,
    }..removeWhere((key, value) => value == null))
        .map((key, value) => MapEntry(key, value!));