copyWith method

Group copyWith({
  1. String? expand,
  2. String? groupId,
  3. String? name,
  4. String? self,
  5. PagedListUserDetailsApplicationUser? users,
})

Implementation

Group copyWith(
    {String? expand,
    String? groupId,
    String? name,
    String? self,
    PagedListUserDetailsApplicationUser? users}) {
  return Group(
    expand: expand ?? this.expand,
    groupId: groupId ?? this.groupId,
    name: name ?? this.name,
    self: self ?? this.self,
    users: users ?? this.users,
  );
}