Block constructor

Block({
  1. required String $createdAt,
  2. required String resourceType,
  3. required String resourceId,
  4. String? reason,
  5. String? expiredAt,
  6. required String projectName,
  7. required String region,
  8. required String organizationName,
  9. required String organizationId,
  10. required String billingPlan,
})

Implementation

Block({
  required this.$createdAt,
  required this.resourceType,
  required this.resourceId,
  this.reason,
  this.expiredAt,
  required this.projectName,
  required this.region,
  required this.organizationName,
  required this.organizationId,
  required this.billingPlan,
});