copyWith method

GetSupergroup copyWith({
  1. int? supergroupId,
})

Implementation

GetSupergroup copyWith({
  int? supergroupId,
}) =>
    GetSupergroup(
      supergroupId: supergroupId ?? this.supergroupId,
    );