getPlatformAdSize method

Future<AdSize?> getPlatformAdSize()

Returns the AdSize of the associated platform ad object.

The dimensions of the AdSize returned here may differ from size, depending on what type of AdSize was used. The future will resolve to null if load has not been called yet.

Implementation

Future<AdSize?> getPlatformAdSize() async {
  return await instanceManager.getAdSize(this);
}