getArg method

BuildFactory getArg(
  1. Type t
)
inherited

Implementation

BuildFactory getArg(Type t) {
  assert(_factorys.containsKey(t), 'You need to call put<$t>().');
  return _factorys[t] as BuildFactory;
}