of static method

Function? of(
  1. String path
)

Implementation

static Function? of(String path) {
  final result = _launchMap[path];
  if (result == null) {
    L.w('[DECORATED_FLUTTER] 未找到路径: $path 的启动器!');
  }
  return result;
}