NotificationGroup constructor

NotificationGroup({
  1. String? id,
  2. required String name,
  3. required String environmentId,
  4. required String organizationId,
  5. String? parentId,
})

Implementation

NotificationGroup({
  this.id,
  required this.name,
  required this.environmentId,
  required this.organizationId,
  this.parentId,
});