ExemplarCharacters.punctuationWithProvider constructor

ExemplarCharacters.punctuationWithProvider(
  1. DataProvider provider,
  2. Locale locale
)

Create an ExemplarCharacters for the "punctuation" set of exemplar characters for a given locale, using compiled data.

See the Rust documentation for try_new_punctuation for more information.

Throws DataError on failure.

Implementation

factory ExemplarCharacters.punctuationWithProvider(DataProvider provider, Locale locale) {
  final result = _icu4x_ExemplarCharacters_create_punctuation_with_provider_mv1(provider._ffi, locale._ffi);
  if (!result.isOk) {
    throw DataError.values[result.union.err];
  }
  return ExemplarCharacters._fromFfi(result.union.ok, []);
}