ConnectedApplication constructor

ConnectedApplication({
  1. required String applicationId,
  2. required String name,
  3. String? displayName,
  4. String? logoUrl,
  5. String? applicationUrl,
  6. String? reasonForAccess,
  7. required DateTime createdAt,
  8. ScopesNullable? scopes,
})

Implementation

ConnectedApplication({
  required this.applicationId,
  required this.name,
  this.displayName,
  this.logoUrl,
  this.applicationUrl,
  this.reasonForAccess,
  required this.createdAt,
  this.scopes,
});