String convertToPluralIfNeeded( {required int decidingFactor, String pluralSuffix = 's'}) => decidingFactor == 1 ? this : this + pluralSuffix;