GenerateRandomBytesRequest.fromJson constructor

GenerateRandomBytesRequest.fromJson(
  1. 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,
      );