setSmartBanners static method

Future<void> setSmartBanners(
  1. bool smartBannerEnabled
)

Set smartBannerEnabled (false by default).

Implementation

static Future<void> setSmartBanners(bool smartBannerEnabled) async {
  return _channel.invokeMethod('setSmartBanners', {
    'smartBannerEnabled': smartBannerEnabled,
  });
}