CustomPronunciations.fromJson constructor

CustomPronunciations.fromJson(
  1. Map json_
)

Implementation

CustomPronunciations.fromJson(core.Map json_)
  : this(
      pronunciations: (json_['pronunciations'] as core.List?)
          ?.map(
            (value) => CustomPronunciationParams.fromJson(
              value as core.Map<core.String, core.dynamic>,
            ),
          )
          .toList(),
    );