SymbolStyle constructor

const SymbolStyle({
  1. bool show = true,
  2. Symbol symbol = const CircleSymbol(),
  3. Size size = const Size(8, 8),
  4. double rotate = 0,
  5. Offset offset = Offset.zero,
})

Implementation

const SymbolStyle({
  this.show = true,
  this.symbol = const CircleSymbol(),
  this.size = const Size(8, 8),
  this.rotate = 0,
  this.offset = Offset.zero,
});