ContextParameters.fromJson constructor
ContextParameters.fromJson(
- Map<String, dynamic> json
)
Implementation
ContextParameters.fromJson(Map<String, dynamic> json) {
customerType = json['customerType'];
category = json['category'];
subCategory = json['subCategory'];
transportType = json['transportType'];
sellerType = json['sellerType'];
sellerTypeEntityId = json['sellerTypeEntityId'];
userType = json['userType'];
buyerType = json['buyerType'];
buyerTypeEntityId = json['buyerTypeEntityId'];
transactionType = json['transactionType'];
currencyType = json['currencyType'];
connectionType = json['connectionType'];
serviceType = json['serviceType'];
region = json['region'];
opeartorUserId = json['opeartorUserId'];
opeartorUserName = json['opeartorUserName'];
billingAddressId = json['billingAddressId'];
creditLimitBalance = json['creditLimitBalance'];
}