copyWith method

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

Implementation

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