copyWith method

FwStandardModulesUtilitiesWebImportImportExcelResponse copyWith({
  1. int? status,
  2. bool? success,
  3. String? msg,
  4. String? webImportId,
  5. int? totalRecords,
  6. int? totalImported,
  7. int? totalFailed,
})

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,
  );
}