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