Argument constructor

Argument({
  1. String? argumentKind,
  2. StandardSqlDataType? dataType,
  3. bool? isAggregate,
  4. String? mode,
  5. String? name,
})

Implementation

Argument({
  this.argumentKind,
  this.dataType,
  this.isAggregate,
  this.mode,
  this.name,
});