double? GetDouble(String key) { String value = GetCookie(key).toString(); if (value.isEmpty) return null; return double.parse(value); }