Block constructor

Block({
  1. required String $createdAt,
  2. required String resourceType,
  3. required String resourceId,
  4. String? reason,
  5. String? expiredAt,
})

Implementation

Block({
  required this.$createdAt,
  required this.resourceType,
  required this.resourceId,
  this.reason,
  this.expiredAt,
});