CustomPronunciations.fromJson constructor
      
      CustomPronunciations.fromJson(
    
    
- 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(),
    );