DelDefaultGroupReq constructor

DelDefaultGroupReq({
  1. Iterable<String>? groupIDs,
})

Implementation

factory DelDefaultGroupReq({
  $core.Iterable<$core.String>? groupIDs,
}) {
  final result = create();
  if (groupIDs != null) result.groupIDs.addAll(groupIDs);
  return result;
}