value property

int get value

Implementation

int get value {
  switch (this) {
    case PubliclyUpdatable.yes:
      return 1;
    case PubliclyUpdatable.no:
      return 0;
  }
}