BrickVariableProperties constructor

  1. @internal
const BrickVariableProperties({
  1. required BrickVariableType type,
  2. String? description,
  3. Object? defaultValue,
  4. Object? defaultValues,
  5. String? prompt,
  6. List<String>? values,
  7. String? separator,
})

An object representing a brick variable.

Implementation

@internal
const BrickVariableProperties({
  required this.type,
  this.description,
  this.defaultValue,
  this.defaultValues,
  this.prompt,
  this.values,
  this.separator,
});