GenericConstructorConfig constructor

const GenericConstructorConfig({
  1. required String className,
  2. required GenericConstructorKind kind,
  3. List<String> typeArgVariants = const [],
  4. List<GenericCtorNamedArg> namedArgs = const [],
  5. bool includeDynamicArm = false,
})

Implementation

const GenericConstructorConfig({
  required this.className,
  required this.kind,
  this.typeArgVariants = const [],
  this.namedArgs = const [],
  this.includeDynamicArm = false,
});