FFDataTableAction_ControlPage constructor

FFDataTableAction_ControlPage({
  1. FFDataTableAction_ControlPageType? type,
  2. 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;
}