tryParse static method
Implementation
static SameSiteCookie? tryParse(String value) {
try {
return SameSiteCookie.values.firstWhere((e) => e.value == value);
} catch (_) {
return null;
}
}
static SameSiteCookie? tryParse(String value) {
try {
return SameSiteCookie.values.firstWhere((e) => e.value == value);
} catch (_) {
return null;
}
}