londonappbrewery / quizzler-flutter-challenge-final

Completed version of the Quizzler project in the Complete Flutter Bootcamp
https://www.appbrewery.co
63 stars 137 forks source link

How to create class constructors in Flutter 3.7 #22

Open tlaw22 opened 1 year ago

tlaw22 commented 1 year ago

FvJ63aMWIAULj0P

class Question { final String questionText; final bool questionAnswer;

Question({ required this.questionText, required this.questionAnswer, }); }

// You have to add the required keyword to the constructor.

tlaw22 commented 1 year ago

To delcare a function that is initalized elsewhere. final void Function() onTap;

tlaw22 commented 1 year ago

might as well leave this open.