value property

int value

Implementation

int get value {
  switch (this) {
    case OnCompletion.NO_OP_OC:
      return 0;
    case OnCompletion.OPT_IN_OC:
      return 1;
    case OnCompletion.CLOSE_OUT_OC:
      return 2;
    case OnCompletion.CLEAR_STATE_OC:
      return 3;
    case OnCompletion.UPDATE_APPLICATION_OC:
      return 4;
    case OnCompletion.DELETE_APPLICATION_OC:
      return 5;
  }
}