init method
Implementation
Future<bool> init() async {
try {
return await WalletconnectPayPlatform.instance.initialize(
apiKey: apiKey,
appId: appId,
clientId: clientId,
baseUrl: baseUrl,
);
} catch (e) {
rethrow;
}
}