copyWith method

OrderCreated copyWith({
  1. Order? data,
})

Implementation

OrderCreated copyWith({
  Order? data,
}) {
  return OrderCreated(
    data: data ?? this.data,
  );
}