copyWith method

CreateSupergroupChat copyWith({
  1. int? supergroupId,
  2. bool? force,
})

Implementation

CreateSupergroupChat copyWith({
  int? supergroupId,
  bool? force,
}) => CreateSupergroupChat(
  supergroupId: supergroupId ?? this.supergroupId,
  force: force ?? this.force,
);