AdsConfig constructor

const AdsConfig({
  1. required String clientId,
  2. List<AdPlacement> placements = const [],
  3. bool enabled = true,
})

Implementation

const AdsConfig({
  required this.clientId,
  this.placements = const [],
  this.enabled = true,
});