DecodeIntegrityTokenRequest.fromJson constructor

DecodeIntegrityTokenRequest.fromJson(
  1. Map json_
)

Implementation

DecodeIntegrityTokenRequest.fromJson(core.Map json_)
    : this(
        integrityToken: json_.containsKey('integrityToken')
            ? json_['integrityToken'] as core.String
            : null,
      );