copyWith method

WebApiModulesWarehouseCheckOutGetNotesResponse copyWith({
  1. String? notes,
  2. int? status,
  3. bool? success,
  4. String? msg,
})

Implementation

WebApiModulesWarehouseCheckOutGetNotesResponse copyWith({
  String? notes,
  int? status,
  bool? success,
  String? msg,
}) {
  return WebApiModulesWarehouseCheckOutGetNotesResponse(
    notes: notes ?? this.notes,
    status: status ?? this.status,
    success: success ?? this.success,
    msg: msg ?? this.msg,
  );
}