toAccessPropertyValue method
Implementation
AccessPropertyValue toAccessPropertyValue() {
switch (this) {
case 'ALLOW':
return AccessPropertyValue.allow;
case 'DENY':
return AccessPropertyValue.deny;
}
throw Exception('$this is not known in enum AccessPropertyValue');
}