spawn<S>  static method 
Implementation
static Bind spawn<S>(BuilderPattern<S> builder,
    {String? tag, bool permanent = true}) {
  June.spawn<S>(builder, tag: tag, permanent: permanent);
  return _FactoryBind<S>(
    tag: tag,
    global: false,
    autoRemove: permanent,
  );
}