ConstructorParameter.required constructor

ConstructorParameter.required(
  1. String name, {
  2. bool this$ = false,
  3. Type? type,
})

Implementation

ConstructorParameter.required(String name, {bool this$ = false, Type? type})
    : super._(ParameterCategory.required, name, this$: this$, type: type);