AdSize constructor

const AdSize({
  1. required int width,
  2. required int height,
})

Constructs an AdSize with the given width and height.

Implementation

const AdSize({
  required this.width,
  required this.height,
});