ClientParam constructor

ClientParam({
  1. required String name,
  2. required ParameterPosition position,
  3. required ClientType type,
  4. required List<String> access,
  5. required bool acceptMultiple,
  6. required bool hasDefaultValue,
})

Implementation

ClientParam({
  required this.name,
  required this.position,
  required this.type,
  required this.access,
  required this.acceptMultiple,
  required this.hasDefaultValue,
});