GetBool function

bool? GetBool(
  1. String key
)

Implementation

bool? GetBool(String key) {
  switch (GetCookie(key)?.toLowerCase()) {
    case 'true':
    case '1':
      return true;
    case 'false':
    case '0':
      return false;
    default:
      return null;
  }
}