present static method
Shows the pre built UI Offer Flow.
Implementation
static Future<void> present(BuildContext context) async {
TikiSdk tikiSdk = instance;
showModalBottomSheet<dynamic>(
context: context,
isScrollControlled: true,
backgroundColor: Colors.transparent,
builder: (BuildContext context) => OfferPrompt(instance.offers));
}