Alphabet.from constructor

Alphabet.from({
  1. required String id,
  2. required String name,
  3. required String title,
  4. required String subtitle,
  5. required List<AlphabetGroup> groups,
})

Returns the new instance of Alphabet based on arguments.

Implementation

Alphabet.from({
  required this.id,
  required this.name,
  required this.title,
  required this.subtitle,
  required this.groups,
});