I'm having the below pluralSample string in my app_en.arb file, based on the passed option we can pick the value
"pluralSample" : "{count, plural, =0{no persons} =1{one person} =2{2 persons} few{few persons} many{many persons} other{{count} people}}",
By passing 0 to setter we can get no persons value
Text(AppLocalizations.of(context)!.pluralSample(0)) /// no persons
By passing count I can get 25 people
Text(AppLocalizations.of(context)!.pluralSample(25)) /// 25 people
But how can we access these few and many options here?
few{few persons} many{many persons}