initialize method

Future initialize()

Implementation

Future initialize() async {
  if (initialized) {
    return;
  }
  initialized = true;
  var l = await loaders();
  if (l.isNotEmpty == true) {
    l.forEach((loader) => this + loader);
  }
}