CodePointSetData.prependedConcatenationMarkWithProvider constructor
- DataProvider provider
Create a set for the Prepended_Concatenation_Mark
property, using a particular data source.
See the Rust documentation for PrependedConcatenationMark
for more information.
Throws DataError on failure.
Implementation
factory CodePointSetData.prependedConcatenationMarkWithProvider(DataProvider provider) {
final result = _icu4x_CodePointSetData_create_prepended_concatenation_mark_with_provider_mv1(provider._ffi);
if (!result.isOk) {
throw DataError.values[result.union.err];
}
return CodePointSetData._fromFfi(result.union.ok, []);
}