SAMLAccountSamlConnection constructor

SAMLAccountSamlConnection({
  1. required String id,
  2. required String name,
  3. String? domain,
  4. List<String> domains = const [],
  5. required bool active,
  6. required String provider,
  7. required bool syncUserAttributes,
  8. bool? allowSubdomains,
  9. bool? allowIdpInitiated,
  10. bool? disableAdditionalIdentifications,
  11. required int createdAt,
  12. required int updatedAt,
})

Returns a new SAMLAccountSamlConnection instance.

Implementation

SAMLAccountSamlConnection({
  required this.id,
  required this.name,
  this.domain,
  this.domains = const [],
  required this.active,
  required this.provider,
  required this.syncUserAttributes,
  this.allowSubdomains,
  this.allowIdpInitiated,
  this.disableAdditionalIdentifications,
  required this.createdAt,
  required this.updatedAt,
});