copyWith method
Implementation
FwStandardModulesUtilitiesWebImportImportExcelResponse copyWith({
int? status,
bool? success,
String? msg,
String? webImportId,
int? totalRecords,
int? totalImported,
int? totalFailed,
}) {
return FwStandardModulesUtilitiesWebImportImportExcelResponse(
status: status ?? this.status,
success: success ?? this.success,
msg: msg ?? this.msg,
webImportId: webImportId ?? this.webImportId,
totalRecords: totalRecords ?? this.totalRecords,
totalImported: totalImported ?? this.totalImported,
totalFailed: totalFailed ?? this.totalFailed,
);
}