value property

int get value

Implementation

int get value {
  switch (this) {
    case PopupAction.RATE_IN_STORE_CLICKED:
      return 1;
    case PopupAction.SEND_FEEDBACK_CLICKED:
      return 0;
    case PopupAction.LATER_CLICKED:
      return -1;
  }
}