copyWith method
KeyboardButton
copyWith({
- String? text,
- int? iconCustomEmojiId,
- ButtonStyle? style,
- KeyboardButtonType? type,
Implementation
KeyboardButton copyWith({
String? text,
int? iconCustomEmojiId,
ButtonStyle? style,
KeyboardButtonType? type,
}) => KeyboardButton(
text: text ?? this.text,
iconCustomEmojiId: iconCustomEmojiId ?? this.iconCustomEmojiId,
style: style ?? this.style,
type: type ?? this.type,
);