TokenReview constructor

const TokenReview({
  1. String? apiVersion,
  2. String? kind,
  3. ObjectMeta? metadata,
  4. required TokenReviewSpec spec,
  5. TokenReviewStatus? status,
})

Default constructor.

Implementation

const TokenReview({
  this.apiVersion,
  this.kind,
  this.metadata,
  required this.spec,
  this.status,
});