ActionParamBuilder constructor

ActionParamBuilder({
  1. required int index,
  2. required double defualtWidth,
  3. required int rowIndex,
})

Creates an ActionParamBuilder instance. index: The index of the action within the actions list. defualtWidth: The default width for the action widget. rowIndex: The index of the row.

Implementation

ActionParamBuilder(
    {required super.index,
    required super.defualtWidth,
    required this.rowIndex});