nc-photos/app/lib/ad_helper.dart

20 lines
442 B
Dart
Raw Normal View History

2021-03-27 10:36:54 +01:00
import 'package:np_platform_util/np_platform_util.dart';
class AdHelper {
static String get bannerAdUnitId {
if (getRawPlatform() == NpPlatform.android) {
return "";
} else {
throw UnsupportedError("Unsupported platform");
}
}
static String get rewardedAdUnitId {
if (getRawPlatform() == NpPlatform.android) {
return "";
} else {
throw UnsupportedError("Unsupported platform");
}
}
}