initialize method

Future<void> initialize()

Initializes the Translator by calling, and await-ing all loaders for the this was constructed with.

The returned Future will not resolve until all Futures from the loaders all resolve.

This should only be called once per instance.

Implementation

Future<void> initialize() async {
  await _load(_loaders[_language]);
}