get<T> function

T? get<T>([
  1. String? name
])

可选的获取对象, 返回可能为null

Implementation

T? get<T>([String? name]) {
  try {
    final T result = _container.resolve(name);
    return result;
  } catch (e, s) {
    L.w('我警告你啊, 没找到你要的 $T($name) 对象, 返回null了, 你看看你是不是代码逻辑有问题\n$s');
    return null;
  }
}