copyWith method

ShowQuantity copyWith({
  1. String? quantity,
  2. String? indicator,
})

Implementation

ShowQuantity copyWith({  String? quantity,
  String? indicator,
}) => ShowQuantity(  quantity: quantity ?? this.quantity,
  indicator: indicator ?? this.indicator,
);