Character.from constructor

Character.from({
  1. required String value,
  2. required String transliteration,
  3. required String ttsUrl,
  4. required double proficiency,
})

Returns the new instance of Character based on arguments.

Implementation

Character.from({
  required this.value,
  required this.transliteration,
  required this.ttsUrl,
  required this.proficiency,
});