FFDataTableAction_ControlPage constructor
FFDataTableAction_ControlPage({
- FFDataTableAction_ControlPageType? type,
- FFValue? rowIndex,
Implementation
factory FFDataTableAction_ControlPage({
FFDataTableAction_ControlPageType? type,
FFValue? rowIndex,
}) {
final result = create();
if (type != null) result.type = type;
if (rowIndex != null) result.rowIndex = rowIndex;
return result;
}