copyWith method
Implementation
WebApiModulesBillingBillingUpdateBillingWorksheetResponse copyWith(
{int? status, bool? success, String? msg}) {
return WebApiModulesBillingBillingUpdateBillingWorksheetResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg);
}