copyWith method
Implementation
FoundUsers copyWith(
{String? header, int? total, List<UserPickerUser>? users}) {
return FoundUsers(
header: header ?? this.header,
total: total ?? this.total,
users: users ?? this.users,
);
}
FoundUsers copyWith(
{String? header, int? total, List<UserPickerUser>? users}) {
return FoundUsers(
header: header ?? this.header,
total: total ?? this.total,
users: users ?? this.users,
);
}