toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case SigningProfileStatus.active:
      return 'Active';
    case SigningProfileStatus.canceled:
      return 'Canceled';
    case SigningProfileStatus.revoked:
      return 'Revoked';
  }
}