fromValue static method
Implementation
static PNAppMessageActionIdentifier fromValue(String type) {
return values.firstWhere((element) {
return element.value == type;
}, orElse: () => PNAppMessageActionIdentifier.none);
}
static PNAppMessageActionIdentifier fromValue(String type) {
return values.firstWhere((element) {
return element.value == type;
}, orElse: () => PNAppMessageActionIdentifier.none);
}