copyWith method
Implementation
PrinterResponse copyWith({
String? message,
bool? success,
dynamic data,
}) {
return PrinterResponse(
message: message ?? this.message,
success: success ?? this.success,
data: data ?? this.data,
);
}