copyWith method Null safety

  1. @override
void copyWith(
  1. dynamic others
)
override

Implementation

@override
void copyWith(dynamic others) {
  if (others is DeliveryStatus) {
    updatedDeliveryReceipt.addAll(others.updatedDeliveryReceipt);
  }
}