setOnPlatformUiLayerDestroyed static method

void setOnPlatformUiLayerDestroyed(
  1. OnPlatformUiLayerDestroyed? onUiLayerDestroyed
)

Implementation

static void setOnPlatformUiLayerDestroyed(
  OnPlatformUiLayerDestroyed? onUiLayerDestroyed,
) {
  if (!isAndroid) {
    return;
  }
  StreamVideoFlutterPlatform
          .instance
          .onBackgroundNotificationUiLayerDestroyed =
      onUiLayerDestroyed;
}