CreatePhraseSetRequest.fromJson constructor

CreatePhraseSetRequest.fromJson(
  1. Map json_
)

Implementation

CreatePhraseSetRequest.fromJson(core.Map json_)
  : this(
      phraseSet:
          json_.containsKey('phraseSet')
              ? PhraseSet.fromJson(
                json_['phraseSet'] as core.Map<core.String, core.dynamic>,
              )
              : null,
      phraseSetId: json_['phraseSetId'] as core.String?,
    );