initialize static method

dynamic initialize()

Implementation

static initialize() async {
  try {
    // set the root path for the specified platform
    URI.rootPath = "";

    // hide the logo
    window.document.getElementById("logo")!.style.visibility = "hidden";
  } catch (e) {
    Log().debug('$e');
  }
}