SAMLConnection constructor

SAMLConnection({
  1. required String id,
  2. required String name,
  3. required String domain,
  4. required bool active,
  5. required String provider,
  6. required bool syncUserAttributes,
  7. bool? allowSubdomains,
  8. bool? allowIdpInitiated,
  9. bool? disableAdditionalIdentifications,
  10. required int createdAt,
  11. required int updatedAt,
})

Returns a new SAMLConnection instance.

Implementation

SAMLConnection({
  required this.id,
  required this.name,
  required this.domain,
  required this.active,
  required this.provider,
  required this.syncUserAttributes,
  this.allowSubdomains,
  this.allowIdpInitiated,
  this.disableAdditionalIdentifications,
  required this.createdAt,
  required this.updatedAt,
});