String? validateQuote(String value) { if (value.isEmpty) { return "Please Enter a Qoute"; } else { return null; } }