copyWith method
Implementation
SaveApplicationLogEvent copyWith({
String? type,
int? chatId,
JsonValue? data,
}) =>
SaveApplicationLogEvent(
type: type ?? this.type,
chatId: chatId ?? this.chatId,
data: data ?? this.data,
);