FunctionArg constructor

FunctionArg({
  1. VariableType? type,
  2. bool isRequired = true,
  3. String? name,
})

Implementation

FunctionArg({
  this.type,
  this.isRequired = true,
  this.name,
});