WPTableStringsConfig constructor

const WPTableStringsConfig({
  1. required String noItemsFound,
  2. required String itemsSelected(
    1. int
    ),
  3. required ({String long, String short}) rowsPerPage,
  4. required String of,
})

Implementation

const WPTableStringsConfig({
  required this.noItemsFound,
  required this.itemsSelected,
  required this.rowsPerPage,
  required this.of,
});