name property

String get name

Implementation

String get name {
  switch (this) {
    case AdFormat.banner:
      return "Banner";
    case AdFormat.native:
      return "Native";
    case AdFormat.inStream:
      return "InStream";
    case AdFormat.interstitial:
      return "Interstitial";
    case AdFormat.rewarded:
      return "Rewarded";
    case AdFormat.appOpenAds:
      return "AppOpenAds";
    case AdFormat.unknown:
      return "Unknown";
    case AdFormat.custom:
      return "Custom";
  }
}