DecodeIntegrityTokenResponse.fromJson constructor
DecodeIntegrityTokenResponse.fromJson(
- Map json_
Implementation
DecodeIntegrityTokenResponse.fromJson(core.Map json_)
: this(
tokenPayloadExternal: json_.containsKey('tokenPayloadExternal')
? TokenPayloadExternal.fromJson(json_['tokenPayloadExternal']
as core.Map<core.String, core.dynamic>)
: null,
);