AuthorizeParams constructor

const AuthorizeParams({
  1. required AppIdentity identity,
  2. required Cluster? cluster,
})

Request parameters for authorize method calls.

Implementation

const AuthorizeParams({
  required this.identity,
  required this.cluster,
});