How can create WorkerParameters
问题 Worker's Worker() is @Deprecated , so need use public Worker(@NonNull Context context, @NonNull WorkerParameters workerParams) { super(context, workerParams); } but the WorkerParameters's constructor is @hide . so, how can create WorkerParameters instance? This library is the latest version of Android background task scheduling library, but this library has recently updated the API to mark the old creation method of the core class as discarded Now, I don't know how to create this core class,