getGooglePlayDeveloperAccountId method
Implementation
@override
Future<String> getGooglePlayDeveloperAccountId() async {
try {
return await _configChannel.invokeMethod<String>(
SuperfineSdkChannelMethods.getGooglePlayDeveloperAccountId) ??
"";
} catch (e) {
print("Error fetching Google Play Developer Account ID: $e");
return "Error";
}
}