EditableTableFooter constructor

const EditableTableFooter({
  1. Key? key,
  2. required FooterLayoutEntity footerLayoutEntity,
  3. required double footerWidth,
  4. EdgeInsetsGeometry? footerPadding,
  5. Border? footerBorder,
  6. TextStyle? footerTextStyle,
  7. TextStyle? footerHintTextStyle,
  8. EdgeInsetsGeometry? footerInputDecorationContentPadding,
  9. InputBorder? footerInputDecorationBorder,
  10. InputBorder? footerInputDecorationFocusBorder,
  11. AutovalidateMode? formFieldAutoValidateMode,
  12. bool readOnly = false,
  13. TableFiledFilled<String>? onFilling,
  14. TableFiledFilled<String>? onSubmitted,
})

Implementation

const EditableTableFooter({
  Key? key,
  required this.footerLayoutEntity,
  required this.footerWidth,
  this.footerPadding,
  this.footerBorder,
  this.footerTextStyle,
  this.footerHintTextStyle,
  this.footerInputDecorationContentPadding,
  this.footerInputDecorationBorder,
  this.footerInputDecorationFocusBorder,
  this.formFieldAutoValidateMode,
  this.readOnly = false,
  this.onFilling,
  this.onSubmitted,
}) : super(key: key);