static String? priceValidator(String? value, String type) { if (value == null || value.isEmpty || double.parse(value) < 5) { return "$type cannot be empty or less than 5 euros"; } return null; }