DeleteTokenParams constructor

DeleteTokenParams({
  1. required String authorizedEntity,
  2. required String scope,
})

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,
      );