SubgraphStyle constructor

const SubgraphStyle({
  1. int? backgroundColor,
  2. int? borderColor,
  3. double borderWidth = 1.0,
  4. double borderRadius = 4.0,
  5. double padding = 16.0,
})

Creates a subgraph style

Implementation

const SubgraphStyle({
  this.backgroundColor,
  this.borderColor,
  this.borderWidth = 1.0,
  this.borderRadius = 4.0,
  this.padding = 16.0,
});