FFDataTableAction_UpdateRowsPerPage constructor

FFDataTableAction_UpdateRowsPerPage({
  1. FFValue? rowsPerPage,
})

Implementation

factory FFDataTableAction_UpdateRowsPerPage({
  FFValue? rowsPerPage,
}) {
  final result = create();
  if (rowsPerPage != null) result.rowsPerPage = rowsPerPage;
  return result;
}