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