TFormRow.customCellBuilder constructor

TFormRow.customCellBuilder({
  1. String? tag,
  2. dynamic state,
  3. String title = "",
  4. required Widget widgetBuilder(
    1. BuildContext,
    2. TFormRow
    )?,
  5. bool? require = true,
  6. String? requireMsg,
  7. bool validator(
    1. TFormRow
    )?,
})

Implementation

TFormRow.customCellBuilder({
  this.tag,
  this.state,
  this.title = "",
  required this.widgetBuilder,
  this.require = true,
  this.requireMsg,
  this.validator,
});