TickkiTrackable constructor

const TickkiTrackable({
  1. Key? key,
  2. required Widget child,
  3. String? name,
  4. String? label,
  5. String elementType = 'button',
  6. Map<String, dynamic>? properties,
  7. TickkiAnalytics? analytics,
})

Implementation

const TickkiTrackable({
  super.key,
  required this.child,
  this.name,
  this.label,
  this.elementType = 'button',
  this.properties,
  this.analytics,
});