Step constructor

Step({
  1. String? kind,
  2. String? name,
  3. Map<String, Object?>? properties,
})

Implementation

Step({
  this.kind,
  this.name,
  this.properties,
});