AdSize constructor

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

Implementation

const AdSize({int width = -1, int height = -1}) : this._(
  height: height,
  width: width
);