copyWith method

Withdrawals copyWith({
  1. Map<ADARewardAddress, BigInt>? withdrawals,
})

Implementation

Withdrawals copyWith({Map<ADARewardAddress, BigInt>? withdrawals}) {
  return Withdrawals(withdrawals ?? this.withdrawals);
}