RewardedInterstitialAd class Null safety
A RewardedInterstitialAd model to communicate with the model on the platform side. It gives you methods to help in the implementation and event tracking.
For more info, see:
- Inheritance
-
- Object
- LoadShowAd<
RewardedAdEvent> - RewardedInterstitialAd
Constructors
- RewardedInterstitialAd({String? unitId, Duration loadTimeout = kDefaultLoadTimeout, Duration timeout = kDefaultAdTimeout, bool nonPersonalizedAds = kDefaultNonPersonalizedAds, ServerSideVerificationOptions? serverSideVerificationOptions = kServerSideVerification})
- Creates a new Rewarded Intersitital Ad
Properties
- channel ↔ MethodChannel
-
Channel to communicate with controller
read / write, inherited
- hashCode → int
-
The hash code for this object.
read-only, inherited
- id → String
-
The unique key of this class
read-only, inherited
- isAvailable → bool
-
Check if the time is available. If ad is not loaded, returns false
If it has been the time of timeout since the last load, returns false
read-only, inherited
- isDisposed → bool
-
Check if the ad is disposed. You can dispose the ad by calling
ad.dispose()
read-only, inherited - isLoaded ↔ bool
-
Check if the ad is loaded
@protected, read / write, inherited
- lastLoadedTime ↔ DateTime?
-
@protected, read / write, inherited
- loadTimeout → Duration
-
The ad will stop loading after a specified time.
final, inherited
- nonPersonalizedAds → bool
-
Whether non-personalized ads (ads that are not based on a user’s past behavior)
should be enabled.
final, inherited
-
onEvent
→ Stream<
Map< RewardedAdEvent, dynamic> > -
Listen to the events thís ad throws
read-only, override
-
onEventController
→ StreamController<
Map< RewardedAdEvent, dynamic> > -
@protected, final, inherited
- runtimeType → Type
-
A representation of the runtime type of the object.
read-only, inherited
- serverSideVerificationOptions → ServerSideVerificationOptions?
-
Server Side Verification - Info such as
userId
andcustomData
final, inherited - timeout → Duration
-
The time the ad can be kept loaded.
final, inherited
- unitId → String?
-
The unit id used on this ad. Can be null
final, inherited
Methods
-
dispose(
) → void -
Dispose the ad to free up resources.
Once disposed, this ad can not be used anymore.
override
-
ensureAdAvailable(
) → void -
@protected, inherited
-
ensureAdNotDisposed(
) → void -
@protected, inherited
-
init(
) → void -
Initialize the ad. This can be called only by the ad
override
-
load(
{String? unitId, bool force = false, Duration? timeout, bool? nonPersonalizedAds, List< String> keywords = const [], ServerSideVerificationOptions? serverSideVerificationOptions}) → Future<bool> -
Load the ad. The ad must be loaded so it can be shown.
You can verify if the ad is loaded calling
rewardedAd.isLoaded
override -
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
show(
) → Future< bool> -
Show the rewarded ad. This returns a
Future
that will complete when the ad gets closedoverride -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Properties
- testUnitId → String
-
The test id for this ad.
read-only