copyWith method
Implementation
CreateNewSupergroupChat copyWith({
String? title,
bool? isForum,
bool? isChannel,
String? description,
ChatLocation? location,
int? messageAutoDeleteTime,
bool? forImport,
}) =>
CreateNewSupergroupChat(
title: title ?? this.title,
isForum: isForum ?? this.isForum,
isChannel: isChannel ?? this.isChannel,
description: description ?? this.description,
location: location ?? this.location,
messageAutoDeleteTime:
messageAutoDeleteTime ?? this.messageAutoDeleteTime,
forImport: forImport ?? this.forImport,
);