getEnhancers method
Get list of provider-specific enhancers
Implementation
@override
List<DioEnhancer> getEnhancers(dynamic config) {
  final googleConfig = config as GoogleConfig;
  return [
    // Add query parameter authentication enhancer
    _GoogleAuthEnhancer(googleConfig.apiKey),
  ];
}