getCurrentPlatform function

IapPlatform getCurrentPlatform()

Get current platform

Implementation

IapPlatform getCurrentPlatform() {
  if (defaultTargetPlatform == TargetPlatform.iOS) {
    return IapPlatform.IOS;
  } else if (defaultTargetPlatform == TargetPlatform.android) {
    return IapPlatform.Android;
  }
  throw UnsupportedError('Platform not supported');
}