ArgType<T> constructor

const ArgType<T>(
  1. String name, {
  2. String? description,
  3. T? defaultValue,
})

Implementation

const ArgType(
  this.name, {
  this.description,
  this.defaultValue,
});