copyWith method

GetStatisticalGraph copyWith({
  1. int? chatId,
  2. String? token,
  3. int? x,
})

Implementation

GetStatisticalGraph copyWith({int? chatId, String? token, int? x}) =>
    GetStatisticalGraph(
      chatId: chatId ?? this.chatId,
      token: token ?? this.token,
      x: x ?? this.x,
    );