rawValue property

int get rawValue

Implementation

int get rawValue {
  switch (this) {
    case ApplePaySupportedNetworks.visa:
      return 0;
    case ApplePaySupportedNetworks.masterCard:
      return 1;
    case ApplePaySupportedNetworks.amex:
      return 2;
    case ApplePaySupportedNetworks.discover:
      return 3;
  }
}