CreateGroupRequestDataAttributes constructor

CreateGroupRequestDataAttributes({
  1. required String name,
  2. int? maxUsers,
  3. int? maxLicenses,
  4. int? maxMachines,
  5. Object? metadata,
})

Returns a new CreateGroupRequestDataAttributes instance.

Implementation

CreateGroupRequestDataAttributes({
  required this.name,
  this.maxUsers,
  this.maxLicenses,
  this.maxMachines,
  this.metadata,
});