AirQualityService constructor

AirQualityService({
  1. String? roleName,
  2. List<String>? supportedDataTypes,
  3. required String apiKey,
})

Implementation

AirQualityService({
  String? roleName,
  List<String>? supportedDataTypes,
  required this.apiKey,
}) : super(
        roleName: roleName ?? DEFAULT_ROLENAME,
        supportedDataTypes: supportedDataTypes,
      );