copyWith method
Implementation
CreatePrivateChat copyWith({
int? userId,
bool? force,
}) =>
CreatePrivateChat(
userId: userId ?? this.userId,
force: force ?? this.force,
);
CreatePrivateChat copyWith({
int? userId,
bool? force,
}) =>
CreatePrivateChat(
userId: userId ?? this.userId,
force: force ?? this.force,
);