Param constructor

Param([
  1. double value = 0.0
])

Creates a new Param with the specified constant value.

Implementation

Param([double value = 0.0]) : variable = Variable(value) {
  variable._owner = this;
}