DescTextFieldView constructor Null safety

DescTextFieldView(
  1. {Widget? child,
  2. required String keyStr,
  3. required TextEditingController controller,
  4. bool isDecimal = false,
  5. bool isSigned = false}
)

Implementation

DescTextFieldView({
  this.child,
  required this.keyStr,
  required this.controller,
  this.isDecimal = false,
  this.isSigned = false,
});