AdView constructor

const AdView({
  1. Key? key,
  2. required AdFormat format,
  3. String? appId,
  4. double? width,
  5. double? height,
  6. AdBuilder? builder,
})

Implementation

const AdView({
  super.key,
  required this.format,
  this.appId,
  this.width,
  this.height,
  this.builder,
});