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: '') ];
                    class Quote {
  String author = "";
  String text = "";
  Quote({required this.author, required this.text});
}
Quote(text: 'll', author: '')
    List<Quote> list=[Quote(text: 'll', author: '') ];