copyWith method
ProductStatusResponse
copyWith({
- String? status,
- dynamic message,
- ProductStatusData? data,
- String? objectStatus,
Implementation
ProductStatusResponse copyWith({
String? status,
dynamic message,
ProductStatusData? data,
String? objectStatus,
}) =>
ProductStatusResponse(
status: status ?? this.status,
message: message ?? this.message,
data: data ?? this.data,
objectStatus: objectStatus ?? this.objectStatus,
);