CDKFieldColorHex constructor

const CDKFieldColorHex(
  1. {Key? key,
  2. double? textSize = 12,
  3. int value = 0,
  4. bool enabled = true,
  5. dynamic onValueChanged(
    1. int
    )?,
  6. dynamic onTextChanged(
    1. int
    )?}
)

Implementation

const CDKFieldColorHex({
  Key? key,
  this.textSize = 12,
  this.value = 0,
  this.enabled = true,
  this.onValueChanged,
  this.onTextChanged,
}) : super(key: key);