UndeleteRecognizerRequest.fromJson constructor
UndeleteRecognizerRequest.fromJson(
- Map json_
Implementation
UndeleteRecognizerRequest.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,
);