getByValue static method
Implementation
static SessionRestoreMode? getByValue(int? i) {
if (i == null) return null;
try {
return SessionRestoreMode.values.firstWhere((x) => x.value == i);
} catch (_) {
return null;
}
}
static SessionRestoreMode? getByValue(int? i) {
if (i == null) return null;
try {
return SessionRestoreMode.values.firstWhere((x) => x.value == i);
} catch (_) {
return null;
}
}