AdView constructor

AdView({
  1. required String viewType,
  2. EdgeInsets? padding = EdgeInsets.zero,
  3. EdgeInsets? margin = EdgeInsets.zero,
  4. double? width,
  5. double? height,
  6. String? id,
  7. AdDecoration? decoration,
  8. double? elevation,
  9. Color? elevationColor,
})

Implementation

AdView({
  required this.viewType,
  this.padding = EdgeInsets.zero,
  this.margin = EdgeInsets.zero,
  this.width,
  this.height,
  this.id,
  this.decoration,
  this.elevation,
  this.elevationColor,
});