SupportedDirection.from constructor

SupportedDirection.from({
  1. required String fromLanguage,
  2. required List<String> learningLanguages,
})

Returns the new instance of SupportedDirection based on arguments.

Implementation

SupportedDirection.from({
  required this.fromLanguage,
  required this.learningLanguages,
});