GetDouble function

double? GetDouble(
  1. String key
)

Implementation

double? GetDouble(String key) {
  String value = GetCookie(key).toString();

  if (value.isEmpty) return null;

  return double.parse(value);
}