copyWith method
      
SimpleListWrapperGroupName
copyWith({ 
    
    
- ListWrapperCallbackGroupName? callback,
 - List<
GroupName> ? items, - int? maxResults,
 - ListWrapperCallbackGroupName? pagingCallback,
 - int? size,
 
Implementation
SimpleListWrapperGroupName copyWith(
    {ListWrapperCallbackGroupName? callback,
    List<GroupName>? items,
    int? maxResults,
    ListWrapperCallbackGroupName? pagingCallback,
    int? size}) {
  return SimpleListWrapperGroupName(
    callback: callback ?? this.callback,
    items: items ?? this.items,
    maxResults: maxResults ?? this.maxResults,
    pagingCallback: pagingCallback ?? this.pagingCallback,
    size: size ?? this.size,
  );
}