AppTableEditCell constructor

const AppTableEditCell({
  1. Key? key,
  2. required String text,
  3. TextEditingController? controller,
  4. TextStyle textStyle = const TextStyle(color: Color(0xFF333333), fontSize: 14),
  5. List<TextInputFormatter> inputFormatters = const [],
  6. TextInputType? keyboardType,
  7. ValueChanged<String?>? onSubmitted,
})

Implementation

const AppTableEditCell({
  Key? key,
  required this.text,
  this.controller,
  this.textStyle = const TextStyle(color: Color(0xFF333333), fontSize: 14),
  this.inputFormatters = const [],
  this.keyboardType,
  this.onSubmitted,
}) : super(key: key);