initialize method
override
Implementation
@override
Future<void> initialize() async {
if (kDebugMode) {
await Purchases.setLogLevel(LogLevel.verbose);
}
final configuration = PurchasesConfiguration(_rcApiKey);
await Purchases.configure(configuration);
_updateCustomerInfo(await Purchases.getCustomerInfo());
await _fetchPaywalls();
unawaited(_tryRefetchPaywalls());
}