get static method
Get pluralized form based on count
Implementation
static String get(
int count, {
required String zero,
required String one,
required String few,
required String many,
required String other,
String? locale,
}) {
// Default English-like pluralization
if (count == 0) return zero;
if (count == 1) return one;
return other;
}