copyWith method
Implementation
SendWebAppData copyWith({
int? botUserId,
String? buttonText,
String? data,
}) =>
SendWebAppData(
botUserId: botUserId ?? this.botUserId,
buttonText: buttonText ?? this.buttonText,
data: data ?? this.data,
);