FFDataTableAction constructor

FFDataTableAction({
  1. @Deprecated('This field is deprecated.') FFNodeKeyReference? legacyNodeKeyRef,
  2. FFDataTableAction_ControlPage? controlPage,
  3. FFDataTableAction_UpdateSort? updateSort,
  4. FFDataTableAction_UpdateRowsPerPage? updateRowsPerPage,
  5. FFNodeKeyPath? nodeKeyPath,
})

Implementation

factory FFDataTableAction({
  @$core.Deprecated('This field is deprecated.')
  FFNodeKeyReference? legacyNodeKeyRef,
  FFDataTableAction_ControlPage? controlPage,
  FFDataTableAction_UpdateSort? updateSort,
  FFDataTableAction_UpdateRowsPerPage? updateRowsPerPage,
  FFNodeKeyPath? nodeKeyPath,
}) {
  final result = create();
  if (legacyNodeKeyRef != null) result.legacyNodeKeyRef = legacyNodeKeyRef;
  if (controlPage != null) result.controlPage = controlPage;
  if (updateSort != null) result.updateSort = updateSort;
  if (updateRowsPerPage != null) result.updateRowsPerPage = updateRowsPerPage;
  if (nodeKeyPath != null) result.nodeKeyPath = nodeKeyPath;
  return result;
}