QuoteModel constructor

QuoteModel({
  1. String? quote,
  2. String? author,
})

Implementation

QuoteModel({
  this.quote,
  this.author,
});