custom static method

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

Implementation

static AdSize custom({required int width, required int height}) {
  return AdSize(width: width, height: height);
}