copyWith method

InputMessageStakeDice copyWith({
  1. String? stateHash,
  2. int? stakeGramAmount,
  3. bool? clearDraft,
})

Implementation

InputMessageStakeDice copyWith({
  String? stateHash,
  int? stakeGramAmount,
  bool? clearDraft,
}) => InputMessageStakeDice(
  stateHash: stateHash ?? this.stateHash,
  stakeGramAmount: stakeGramAmount ?? this.stakeGramAmount,
  clearDraft: clearDraft ?? this.clearDraft,
);