WebTask constructor

WebTask({
  1. String? name,
  2. String? description,
  3. List<Measure>? measures,
  4. required String url,
})

Create a task which redirects to a web page url.

Implementation

WebTask({
  super.name,
  super.description,
  super.measures,
  required this.url,
});