Does we need to add 'required' in the constructor of a class in flutter?
class Quote { String text; String author; Quote({ this.text, this.author }); } In vscode, without required, it will shown me error and force me to add required inside the constructor before this.text class Quote { String text; String author; Quote({…