TentTree constructor

TentTree({
  1. Unit? width = const jaspr.Unit.pixels(24),
  2. Unit? height = const jaspr.Unit.pixels(24),
  3. String? viewBox = '0 0 24 24',
  4. Map<String, String>? attributes,
  5. String? id,
  6. String? classes,
  7. Styles? styles,
  8. Map<String, EventCallback>? events,
  9. Key? key,
})

Implementation

TentTree({
  this.width = const jaspr.Unit.pixels(24),
  this.height = const jaspr.Unit.pixels(24),
  this.viewBox = '0 0 24 24',
  this.attributes,
  this.id,
  this.classes,
  this.styles,
  this.events,
  super.key,
});