AccessDetail constructor

AccessDetail({
  1. required String serviceName,
  2. required String serviceNamespace,
  3. String? entityPath,
  4. DateTime? lastAuthenticatedTime,
  5. String? region,
  6. int? totalAuthenticatedEntities,
})

Implementation

AccessDetail({
  required this.serviceName,
  required this.serviceNamespace,
  this.entityPath,
  this.lastAuthenticatedTime,
  this.region,
  this.totalAuthenticatedEntities,
});