hasNativeSDK method

bool hasNativeSDK(
  1. String platform
)

Check if the platform has a native SDK

Implementation

bool hasNativeSDK(String platform) {
  return oauthConfig[platform]?['hasNativeSDK'] ?? false;
}