ArgumentBuilder constructor

const ArgumentBuilder({
  1. required String name,
  2. required String type,
  3. String? defaultValue,
  4. bool isRequired = true,
})

Implementation

const ArgumentBuilder({
  required this.name,
  required this.type,
  this.defaultValue,
  this.isRequired = true,
});