toValue method
Implementation
String toValue() {
switch (this) {
case PullRequestStatusEnum.open:
return 'OPEN';
case PullRequestStatusEnum.closed:
return 'CLOSED';
}
}
String toValue() {
switch (this) {
case PullRequestStatusEnum.open:
return 'OPEN';
case PullRequestStatusEnum.closed:
return 'CLOSED';
}
}