getPlatformAdSize method

Future<AdSize?> getPlatformAdSize()

Returns the AdSize of the associated platform ad object.

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

Implementation

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