copyWith method

GroupCallId copyWith({
  1. int? id,
  2. dynamic extra,
  3. int? clientId,
})

Implementation

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