copyWith method
Implementation
GroupCallId copyWith({
int? id,
dynamic extra,
int? clientId,
}) => GroupCallId(
id: id ?? this.id,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);
GroupCallId copyWith({
int? id,
dynamic extra,
int? clientId,
}) => GroupCallId(
id: id ?? this.id,
extra: extra ?? this.extra,
clientId: clientId ?? this.clientId,
);