Style constructor

Style({
  1. String? nodeId,
  2. String? key,
  3. String? name,
  4. String? description,
  5. StyleType? type,
})

Implementation

Style({
  this.nodeId,
  this.key,
  this.name,
  this.description,
  this.type,
});