FFDataTableAction constructor
FFDataTableAction({
- @Deprecated('This field is deprecated.') FFNodeKeyReference? legacyNodeKeyRef,
- FFDataTableAction_ControlPage? controlPage,
- FFDataTableAction_UpdateSort? updateSort,
- FFDataTableAction_UpdateRowsPerPage? updateRowsPerPage,
- 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;
}