CaseMapping constructor

CaseMapping({
  1. Locale? locale,
})

Constructs a CaseMapping instance for the given locale.

If locale is not provided, the system's locale is used.

Implementation

CaseMapping({Locale? locale})
  : _caseMappingImpl = CaseMappingImpl.build(locale ?? findSystemLocale());