UndeletePhraseSetRequest.fromJson constructor

UndeletePhraseSetRequest.fromJson(
  1. Map json_
)

Implementation

UndeletePhraseSetRequest.fromJson(core.Map json_)
    : this(
        etag: json_.containsKey('etag') ? json_['etag'] as core.String : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        validateOnly: json_.containsKey('validateOnly')
            ? json_['validateOnly'] as core.bool
            : null,
      );