static double parseDouble(String? v, {double defaultValue = 0}) => double.tryParse(v ?? "0") ?? defaultValue;