copyWith method
Implementation
CreditNoteTabData copyWith({ String? cnTypeId,
String? name,
String? cartCount,
}) => CreditNoteTabData( cnTypeId: cnTypeId ?? _cnTypeId,
name: name ?? _name,
cartCount: cartCount ?? _cartCount,
);
CreditNoteTabData copyWith({ String? cnTypeId,
String? name,
String? cartCount,
}) => CreditNoteTabData( cnTypeId: cnTypeId ?? _cnTypeId,
name: name ?? _name,
cartCount: cartCount ?? _cartCount,
);