rawValue property

int get rawValue

The integer value used to represent this OfferType across the platform channel.

Implementation

int get rawValue {
  switch (this) {
    case OfferType.unknown:
      return 0;
    case OfferType.json:
      return 1;
    case OfferType.text:
      return 2;
    case OfferType.html:
      return 3;
    case OfferType.image:
      return 4;
  }
}