ODefVariable constructor

ODefVariable({
  1. required DVar target,
  2. required DExpression? content,
  3. DType? type,
  4. bool changeable = true,
})

Implementation

ODefVariable(
    {required this.target,
    required this.content,
    this.type,
    this.changeable = true});