copyWith method

CartComponentLoaded copyWith({
  1. CartModel? copyThis,
})

Implementation

CartComponentLoaded copyWith({CartModel? copyThis}) {
  return CartComponentLoaded(value: copyThis ?? value);
}