Currently the only way to access faker is using the singleton accessor Faker.instance, which doesn't work well when we want to generate multiple Fakers, one for each locale, e.g.
final fakerEn = Faker()..setLocale(FakerLocaleType.en);
final fakerAr = Faker()..setLocale(FakerLocaleType.ar);
Currently the only way to access faker is using the singleton accessor
Faker.instance
, which doesn't work well when we want to generate multiple Fakers, one for each locale, e.g.