setTheme static method

Future<void> setTheme(
  1. AdropTheme theme
)

Set Theme

theme Theme for ad display

Implementation

static Future<void> setTheme(AdropTheme theme) async {
  try {
    return await AdropPlatform.instance.setTheme(theme.value);
  } catch (e) {
    log('Error: $e', name: 'Adrop');
  }
}