AddressStake constructor

AddressStake({
  1. required int epoch,
  2. required int timestamp,
  3. required String hash,
  4. required String direction,
  5. required String validator,
  6. required String withdrawer,
  7. required int input_value,
  8. required int stake_value,
  9. required bool confirmed,
})

Implementation

AddressStake({
  required this.epoch,
  required this.timestamp,
  required this.hash,
  required this.direction,
  required this.validator,
  required this.withdrawer,
  required this.input_value,
  required this.stake_value,
  required this.confirmed,
});