Language constructor

const Language(
  1. String code,
  2. String name
)

Initializes an instance of Language

Implementation

const factory Language(
  /// ISO 639-1 code of this language.
  String code,

  /// Full English name of this language. This could be an empty string.
  String name,
) = _Language;