CreateGroupOptions constructor

CreateGroupOptions({
  1. required String name,
  2. String? description,
})

Returns a new CreateGroupOptions instance.

Implementation

CreateGroupOptions({
  required this.name,
  this.description,
});