copyWith method

RemoveContacts copyWith({
  1. List<int>? userIds,
})

Implementation

RemoveContacts copyWith({
  List<int>? userIds,
}) => RemoveContacts(
  userIds: userIds ?? this.userIds,
);