DeleteTokenParams constructor
Implementation
DeleteTokenParams({
/// The authorized entity that is used to obtain the token.
required String authorizedEntity,
/// The scope that is used to obtain the token.
required String scope,
}) : _wrapped = $js.DeleteTokenParams(
authorizedEntity: authorizedEntity,
scope: scope,
);