value property

int value

Converts the ServiceStatus value into an integer.

Implementation

int get value {
  switch (this) {
    case ServiceStatus.disabled:
      return 0;
    case ServiceStatus.enabled:
      return 1;
    case ServiceStatus.notApplicable:
      return 2;
    default:
      throw UnimplementedError();
  }
}