pluralize method

String pluralize([
  1. int count = 2
])

Implementation

String pluralize([int count = 2]) {
  return pluralizeIf(count != 1);
}