copyWith method

InputMessageDice copyWith({
  1. String? emoji,
  2. bool? clearDraft,
})

Implementation

InputMessageDice copyWith({String? emoji, bool? clearDraft}) =>
    InputMessageDice(
      emoji: emoji ?? this.emoji,
      clearDraft: clearDraft ?? this.clearDraft,
    );