copyWith method

BoardAdminsBeanGroupsItem copyWith({
  1. String? name,
  2. String? self,
})

Implementation

BoardAdminsBeanGroupsItem copyWith({String? name, String? self}) {
  return BoardAdminsBeanGroupsItem(
    name: name ?? this.name,
    self: self ?? this.self,
  );
}