GroupCreate constructor

GroupCreate({
  1. required String name,
  2. required String parentGroupId,
  3. String? description,
})

Returns a new GroupCreate instance.

Implementation

GroupCreate({
  required this.name,
  required this.parentGroupId,
  this.description,
});