copyWith method

OrderInfo copyWith({
  1. String? name,
  2. String? phoneNumber,
  3. String? emailAddress,
  4. Address? shippingAddress,
  5. dynamic extra,
  6. int? clientId,
})

Implementation

OrderInfo copyWith({
  String? name,
  String? phoneNumber,
  String? emailAddress,
  Address? shippingAddress,
  dynamic extra,
  int? clientId,
}) => OrderInfo(
  name: name ?? this.name,
  phoneNumber: phoneNumber ?? this.phoneNumber,
  emailAddress: emailAddress ?? this.emailAddress,
  shippingAddress: shippingAddress ?? this.shippingAddress,
  extra: extra ?? this.extra,
  clientId: clientId ?? this.clientId,
);