OrganizationConformancePackStatus constructor

OrganizationConformancePackStatus({
  1. required String organizationConformancePackName,
  2. required OrganizationResourceStatus status,
  3. String? errorCode,
  4. String? errorMessage,
  5. DateTime? lastUpdateTime,
})

Implementation

OrganizationConformancePackStatus({
  required this.organizationConformancePackName,
  required this.status,
  this.errorCode,
  this.errorMessage,
  this.lastUpdateTime,
});