showSignificantUpdateAcknowledgment method

  1. @override
Future<void> showSignificantUpdateAcknowledgment({
  1. required String updateDescription,
})
override

Shows Apple's system acknowledgment sheet for a significant app update (iOS 26.4+).

Throws UnsupportedPlatformException on Android and on iOS below 26.4.

Implementation

@override
Future<void> showSignificantUpdateAcknowledgment({
  required String updateDescription,
}) async {
  try {
    await methodChannel.invokeMethod<void>(
      'showSignificantUpdateAcknowledgment',
      {'updateDescription': updateDescription},
    );
  } on PlatformException catch (e) {
    throw _handlePlatformException(e);
  }
}