asType method

RegistrationBuilder asType(
  1. Type type
)

Implementation

RegistrationBuilder asType(Type type) {
  if (!_types.contains(type)) {
    _types.add(type);
  }

  return this;
}