copyWith method

Implementation

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