MyBoost constructor

const MyBoost({
  1. required int slot,
  2. PeerBase? peer,
  3. required DateTime date,
  4. required DateTime expires,
  5. DateTime? cooldownUntilDate,
})

My Boost constructor.

Implementation

const MyBoost({
  required this.slot,
  this.peer,
  required this.date,
  required this.expires,
  this.cooldownUntilDate,
}) : super._();