OfferDetails.fromJson constructor

OfferDetails.fromJson(
  1. Map json_
)

Implementation

OfferDetails.fromJson(core.Map json_)
  : this(
      basePlanId: json_['basePlanId'] as core.String?,
      offerId: json_['offerId'] as core.String?,
      offerTags:
          (json_['offerTags'] as core.List?)
              ?.map((value) => value as core.String)
              .toList(),
    );