copyWith method

  1. @override
ChatTypeSupergroup copyWith({
  1. int? supergroupId,
  2. bool? isChannel,
})
override

Implementation

@override
ChatTypeSupergroup copyWith({
  int? supergroupId,
  bool? isChannel,
}) => ChatTypeSupergroup(
  supergroupId: supergroupId ?? this.supergroupId,
  isChannel: isChannel ?? this.isChannel,
);