TranslationsLoader class

Use to load assets translations. You need to provide valid assets folder path, otherwise, you will get exception. You should call use this class only once, on application start just to load translations

Constructors

TranslationsLoader()

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

loadTranslations(String assetsTranslationsPath, [List<Locale>? supportedLocales]) Future<Map<String, Map<String, String>>>
assetsTranslationsPath path to the folder, inside assets, which contains translation files. With supportedLocales you can provide which locales should be loaded. If you do not provide this, all files inside that folder are loaded.