BaseBuilder<B extends BaseBuilder<B, T>, T> constructor

BaseBuilder<B extends BaseBuilder<B, T>, T>({
  1. bool negated = false,
  2. Chain? chain,
  3. bool? optional,
  4. bool? nullable,
})

Implementation

BaseBuilder({bool negated = false, Chain? chain, bool? optional, bool? nullable})
    : chain = chain ?? Chain(),
      _negated = negated,
      _optional = optional ?? false,
      _nullable = nullable ?? false;