EditableTableDataCell constructor

const EditableTableDataCell({
  1. Key? key,
  2. required CellEntity cellEntity,
  3. required double cellWidth,
  4. EdgeInsetsGeometry? cellContentPadding,
  5. EdgeInsetsGeometry? cellInputDecorationContentPadding,
  6. TextStyle? cellHintTextStyle,
  7. InputBorder? cellInputDecorationBorder,
  8. InputBorder? cellInputDecorationFocusBorder,
  9. TextStyle? cellTextStyle,
  10. AutovalidateMode? formFieldAutoValidateMode,
  11. bool readOnly = false,
  12. TableFiledFilled? onFilling,
  13. TableFiledFilled? onSubmitted,
})

Implementation

const EditableTableDataCell({
  Key? key,
  required this.cellEntity,
  required this.cellWidth,
  this.cellContentPadding,
  this.cellInputDecorationContentPadding,
  this.cellHintTextStyle,
  this.cellInputDecorationBorder,
  this.cellInputDecorationFocusBorder,
  this.cellTextStyle,
  this.formFieldAutoValidateMode,
  this.readOnly = false,
  this.onFilling,
  this.onSubmitted,
}) : super(key: key);