find method

  1. @override
T find()
override

Get the instance (throws if not found)

Implementation

@override
T find() {
  if (scope != null) {
    return scope!.findRequired<T>(tag: tag);
  } else {
    return Zen.find<T>(tag: tag);
  }
}