ChainTipEvent constructor

ChainTipEvent({
  1. ChainTip? oldTip,
  2. required ChainTip newTip,
  3. required ChainTipEventType type,
  4. String? triggeringPeer,
  5. required String description,
})

Implementation

ChainTipEvent({
  this.oldTip,
  required this.newTip,
  required this.type,
  this.triggeringPeer,
  required this.description,
});