18 lines
645 B
Dart
18 lines
645 B
Dart
// Label StoreMax
|
|
//
|
|
// Created by Anthony Gordon.
|
|
// 2023, WooSignal Ltd. All rights reserved.
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
class SharedKey {
|
|
static const String authUser = "DEFAULT_SP_USER";
|
|
static const String cart = "CART_SESSION";
|
|
static const String customerBillingDetails = "CS_BILLING_DETAILS";
|
|
static const String customerShippingDetails = "CS_SHIPPING_DETAILS";
|
|
static const String wishlistProducts = "CS_WISHLIST_PRODUCTS";
|
|
}
|