CDKField360 constructor

const CDKField360(
  1. {Key? key,
  2. double value = 0.0,
  3. double textSize = 12,
  4. bool enabled = true,
  5. dynamic onChanged(
    1. double
    )?}
)

Implementation

const CDKField360({
  Key? key,
  this.value = 0.0,
  this.textSize = 12,
  this.enabled = true,
  this.onChanged,
}) : super(key: key);