load method
Loads strings from file and sets _strings
.
Implementation
Future<ComponentStrings> load() async {
// Loading strings from assets
_strings = await _loadStrings();
return this;
}
Loads strings from file and sets _strings
.
Future<ComponentStrings> load() async {
// Loading strings from assets
_strings = await _loadStrings();
return this;
}