Word constructor

Word({
  1. required String text,
  2. required int id,
  3. bool isWordsOfJesus = false,
})

Implementation

Word({
  required this.text,
  required this.id,
  this.isWordsOfJesus = false,
});