productionUnitId property

String get productionUnitId

Implementation

String get productionUnitId {
  if (GetPlatform.isIOS) {
    return _iosUnitId;
  }
  if (GetPlatform.isAndroid) {
    return _androidUnitId;
  }
  throw PlatformException(code: 'platform_not_supported');
}