GetDouble function

double? GetDouble(
  1. String key
)

Implementation

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