GroupSetRequestArgs constructor

const GroupSetRequestArgs({
  1. required String name,
  2. bool? honorSessionLimits,
  3. bool? speedLimitDownEnabled,
  4. num? speedLimitDown,
  5. bool? speedLimitUpEnabled,
  6. num? speedLimitUp,
})

Implementation

const GroupSetRequestArgs({
  required this.name,
  this.honorSessionLimits,
  this.speedLimitDownEnabled,
  this.speedLimitDown,
  this.speedLimitUpEnabled,
  this.speedLimitUp,
});