tryParse static method

SameSiteCookie? tryParse(
  1. String value
)

Implementation

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