CaseMapper constructor
- DataProvider provider
Construct a new CaseMapper instance
See the Rust documentation for new
for more information.
Throws DataError on failure.
Implementation
factory CaseMapper(DataProvider provider) {
final result = _icu4x_CaseMapper_create_mv1(provider._ffi);
if (!result.isOk) {
throw DataError.values[result.union.err];
}
return CaseMapper._fromFfi(result.union.ok, []);
}