enableCreativeHistory method

Future<void> enableCreativeHistory(
  1. int size
)

Enables the banner creative history.

size: Size of the creative history.

Implementation

Future<void> enableCreativeHistory(int size) async {
  try {
    return AatkitFlutterPluginPlatform.instance
        .enableCreativeHistory(name, size);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}