mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-03-21 14:39:21 +01:00
20 lines
442 B
Dart
20 lines
442 B
Dart
|
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");
|
||
|
}
|
||
|
}
|
||
|
}
|