VestingPoolInfo constructor

const VestingPoolInfo({
  1. String? name,
  2. String? vestingType,
  3. Timestamp? lockStart,
  4. Timestamp? lockEnd,
  5. String? withdrawable,
  6. Coin? initiallyLocked,
  7. String? currentlyLocked,
  8. String? sentAmount,
  9. List<VestingPoolReservation> reservations = const [],
})

Implementation

const VestingPoolInfo({
  this.name,
  this.vestingType,
  this.lockStart,
  this.lockEnd,
  this.withdrawable,
  this.initiallyLocked,
  this.currentlyLocked,
  this.sentAmount,
  this.reservations = const [],
});