toValue method
Implementation
String toValue() {
switch (this) {
case InvocationType.event:
return 'Event';
case InvocationType.requestResponse:
return 'RequestResponse';
case InvocationType.dryRun:
return 'DryRun';
}
}