openPath method

void openPath(
  1. String path
)

Implementation

void openPath(String path) {
  getViewByPath(path)
      .then(_showView)
      .catchError((error, stackTrace) => showFatalError(error));
}