Extra.fromJson constructor

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

Implementation

Extra.fromJson(Map<String, dynamic> json) {
  startAt = json["start_at"];
  endAt = json["end_at"];
  expireMonth = json["expire_month"];
  vbankResult = json["vbank_result"];
  quotas = json["quotas"];

  appScheme = json["app_scheme"];

  locale = json["locale"];

  popup = json["popup"];
  quickPopup = json["quick_popup"];
  dispCashResult = json["disp_cash_result"];
  escrow = json["escrow"];
  iosCloseButton = json["iosCloseButton"];

  offerPeriod = json["offer_period"];
  theme = json["theme"];
  customBackground = json["custom_background"];
  customFontColor = json["custom_font_color"];
}