SessionRetention.fromJson constructor

SessionRetention.fromJson(
  1. Object? json
)

Implementation

factory SessionRetention.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return SessionRetention(
      couponOffer: PortalFlowsCouponOffer.fromJson(map['coupon_offer']));
}