edgeEventActionTypeFromString function
Implementation
EdgeEventActionType edgeEventActionTypeFromString(String value) {
return EdgeEventActionType.values.firstWhere(
(e) => e.toString().split('.')[1].toUpperCase() == value.toUpperCase());
}
EdgeEventActionType edgeEventActionTypeFromString(String value) {
return EdgeEventActionType.values.firstWhere(
(e) => e.toString().split('.')[1].toUpperCase() == value.toUpperCase());
}