BioExtra.fromJson constructor

BioExtra.fromJson(
  1. Map<String, dynamic> json
)

Implementation

BioExtra.fromJson(Map<String, dynamic> json) {
  cardQuota = json["card_quota"];
  sellerName = json["seller_name"];

  deliveryDay = json["delivery_day"];
  locale = json["locale"];
  offerPeriod = json["offer_period"];

  displayCashReceipt = json["display_cash_receipt"];
  depositExpiration = json["deposit_expiration"];
  appScheme = json["app_scheme"];

  useCardPoint = json["use_card_point"];
  directCard = json["direct_card"];
  useOrderId = json["use_order_id"];
  internationalCardOnly = json["international_card_only"];
  phoneCarrier = json["phone_carrier"];
  directAppCard = json["direct_app_card"];
  directSamsungpay = json["direct_samsungpay"];
  testDeposit = json["test_deposit"];
  enableErrorWebhook = json["enable_error_webhook"];
  separatelyConfirmed = json["separately_confirmed"];
  separatelyConfirmedBio = json['separately_confirmed_bio'];
  confirmOnlyRestApi = json["confirm_only_rest_api"];
  openType = json["open_type"];

  useBootpayInappSdk = json["use_bootpay_inapp_sdk"];
  redirectUrl = json["redirect_url"];
  displaySuccessResult = json["display_success_result"];
  displayErrorResult = json["display_error_result"];
  disposableCupDeposit = json["disposable_cup_deposit"];
  useWelcomepayment = json["use_welcomepayment"];
  firstSubscriptionComment = json["first_subscription_comment"];
  exceptCardCompanies = json["except_card_companies"];
  enableEasyPayments = json["enable_easy_payments"];
  confirmGraceSeconds = json["confirm_grace_seconds"];
  isShowTotalPay = json["isShowTotalPay"];
}