Get a quote by its ID
Future<Quote> getQuoteByID(String id) async { final endpoint = ListQuote.endpoint + '/$id'; final r = await requestHandler(endpoint); return Quote.fromJson(r); }