copyWith method

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

Implementation

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