getGooglePlayDeveloperAccountId method

  1. @override
Future<String> getGooglePlayDeveloperAccountId()
override

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";
  }
}