copyWith method

Nonce copyWith({
  1. List<int>? hash,
})

Implementation

Nonce copyWith({List<int>? hash}) {
  return Nonce(hash ?? this.hash);
}