load method

Future<ComponentStrings> load()

Loads strings from file and sets _strings.

Implementation

Future<ComponentStrings> load() async {
  // Loading strings from assets
  _strings = await _loadStrings();
  return this;
}