copyWith method

SaveApplicationLogEvent copyWith({
  1. String? type,
  2. int? chatId,
  3. JsonValue? data,
})

Implementation

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