toJson method

Json toJson()

outputs a map compatible with jsonEncode

Implementation

Json toJson() => {
      'iss': issuer,
      'azp': authorizedParty,
      'aud': audience,
      'sub': subject,
      'at_hash': accessTokenHashValue,
      'email': email,
      'email_verified': '$emailVerified',
      'iat': issuedAt,
      'exp': expirationTime,
      'nonce': nonce,
      'hd': hostedDomain,
    };