TeaSlate constructor

TeaSlate({
  1. required String key,
  2. String apiUrl = "https://teaslate.twiiky.fr/api/translations/json",
  3. String? defaultLang,
  4. bool debug = false,
  5. List translations = const [],
  6. bool ignoreCertErrors = false,
})

Implementation

TeaSlate(
    {required this.key,
      this.apiUrl = "https://teaslate.twiiky.fr/api/translations/json",
      this.defaultLang,
      this.debug = false,
      this.translations = const [],
      this.ignoreCertErrors = false});