ProtectedResourceMetadata constructor

const ProtectedResourceMetadata({
  1. required String resource,
  2. required List<String> authorizationServers,
  3. List<String>? scopesSupported,
  4. List<String>? bearerMethodsSupported,
  5. String? resourceDocumentation,
})

Implementation

const ProtectedResourceMetadata({
  required this.resource,
  required this.authorizationServers,
  this.scopesSupported,
  this.bearerMethodsSupported,
  this.resourceDocumentation,
});