ParameterReflection constructor

const ParameterReflection(
  1. TypeReflection type,
  2. String name,
  3. bool nullable,
  4. bool required, [
  5. Object? defaultValue,
  6. List<Object>? _annotations,
])

Implementation

const ParameterReflection(
  this.type,
  this.name,
  this.nullable,
  this.required, [
  this.defaultValue,
  this._annotations,
]);