MacVerifyResponse.fromJson constructor
MacVerifyResponse.fromJson(
- Map json_
Implementation
MacVerifyResponse.fromJson(core.Map json_)
: this(
name: json_['name'] as core.String?,
protectionLevel: json_['protectionLevel'] as core.String?,
success: json_['success'] as core.bool?,
verifiedDataCrc32c: json_['verifiedDataCrc32c'] as core.bool?,
verifiedMacCrc32c: json_['verifiedMacCrc32c'] as core.bool?,
verifiedSuccessIntegrity:
json_['verifiedSuccessIntegrity'] as core.bool?,
);