isRegistered static method

bool isRegistered(
  1. String jobType
)

Check if a job type is registered

Implementation

static bool isRegistered(String jobType) {
  return _instance._factories.containsKey(jobType);
}