Edit41Number constructor

const Edit41Number({
  1. Key? key,
  2. TextEditingController? controller,
  3. String hint = "",
  4. Color color = Colors.black,
  5. required double radius,
  6. Color backgroundColor = Colors.white,
  7. dynamic onChange(
    1. String
    )?,
  8. TextStyle style = const TextStyle(),
})

Implementation

const Edit41Number({Key? key, this.controller, this.hint = "", this.color = Colors.black, required this.radius,
  this.backgroundColor = Colors.white,
  this.onChange, this.style = const TextStyle(),}) : super(key: key);