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