use keyword require:

class Quote {
  String author = "";
  String text = "";
  Quote({required this.author, required this.text});
}

call:

Quote(text: 'll', author: '')

list of models:

    List<Quote> list=[Quote(text: 'll', author: '') ];