GenerateRandomBytesRequest.fromJson constructor
GenerateRandomBytesRequest.fromJson(
- Map json_
Implementation
GenerateRandomBytesRequest.fromJson(core.Map json_)
: this(
lengthBytes: json_.containsKey('lengthBytes')
? json_['lengthBytes'] as core.int
: null,
protectionLevel: json_.containsKey('protectionLevel')
? json_['protectionLevel'] as core.String
: null,
);