buildMissingRights method
Implementation
Widget buildMissingRights(BuildContext context) {
return Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
FastBody(
text: PurchasesLocaleKeys
.purchases_message_have_not_acquired_premium_version
.tr(),
),
kFastVerticalSizedBox12,
FastBody(
text: AdLocaleKeys.ad_message_watch_ad_unlock_excel.tr(),
),
if (onAlternativeAction != null) ...[
kFastVerticalSizedBox12,
FastBody(
text: PurchasesLocaleKeys.purchases_message_premium_upgrade_offer
.tr(),
),
]
],
);
}