copyWith method

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

Copy model with modified properties.

Properties:

  • name: Name of the user
  • phone_number: Phone number of the user
  • email_address: Email address of the user
  • shipping_address: Shipping address for this order; may be null

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,
    );