AlphabetGroup.from constructor

AlphabetGroup.from({
  1. required String name,
  2. required String title,
  3. required String subtitle,
  4. required CharacterBook characterBook,
})

Returns the new instance of AlphabetGroup based on arguments.

Implementation

AlphabetGroup.from({
  required this.name,
  required this.title,
  required this.subtitle,
  required this.characterBook,
});