totalElementsText method

String totalElementsText(
  1. Object totalElements
)

Showing {totalElements} elements

Implementation

String totalElementsText(Object totalElements) {
  return Intl.message(
    'Showing $totalElements elements',
    name: 'totalElementsText',
    desc: '',
    args: [totalElements],
  );
}