RowWidgetModel<T> constructor

RowWidgetModel<T>({
  1. required List<RowFieldWidgetModel> rowFieldList,
  2. T? others,
  3. CheckBoxWidgetStyle? checkBoxWidgetStyle,
  4. bool rowClickable = false,
  5. dynamic onRowClick()?,
  6. bool canBeSelected = true,
})

constructor

Implementation

RowWidgetModel({
  required this.rowFieldList,
  this.others,
  this.checkBoxWidgetStyle,
  this.rowClickable = false,
  this.onRowClick,
  this.canBeSelected = true,
});