ParameterDescription constructor

ParameterDescription({
  1. required String name,
  2. required Type type,
  3. required bool nullable,
})

Creates a new ParameterDescription.

Implementation

ParameterDescription({
  required this.name,
  required this.type,
  required this.nullable,
});