trial property

SK2IntroOfferInfo? get trial

Implementation

SK2IntroOfferInfo? get trial {
  final introOffer = this.introOffer;
  if (introOffer == null || !introOffer.isTrial) {
    return null;
  }
  return introOffer;
}