mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
19 lines
442 B
Dart
19 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");
|
|
}
|
|
}
|
|
}
|