setBannerAnimation static method

Future<void> setBannerAnimation(
  1. bool bannerAnimationEnabled
)

Set bannerAnimationEnabled (true by default).

Implementation

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