fromInt static method
Implementation
static NetmeraPushType? fromInt(int? value) {
if (value == null) return null;
for (final type in values) {
if (type.value == value) return type;
}
return null;
}
static NetmeraPushType? fromInt(int? value) {
if (value == null) return null;
for (final type in values) {
if (type.value == value) return type;
}
return null;
}