int? GetInt(String key) { final value = GetCookie(key); return value == null ? null : int.tryParse(value); }