AdSizedView constructor

AdSizedView({
  1. required AdView child,
  2. double? height,
  3. double? width,
})

Implementation

AdSizedView({
  required AdView child,
  this.height,
  this.width,
}) : super(child: child);