load method

  1. @override
Future<void> load()

Requests an ad from Adrop using the Ad unit ID of the Adrop ad.

Implementation

@override
Future<void> load() async {
  super.load();
  customize({
    // ignore: deprecated_member_use
    "closeTextColor": closeTextColor?.value,
    // ignore: deprecated_member_use
    "hideForTodayTextColor": hideForTodayTextColor?.value,
    // ignore: deprecated_member_use
    "backgroundColor": backgroundColor?.value,
  });
}