openStoreListing static method

Future<void> openStoreListing({
  1. String? targetPackage,
})

Opens the Galaxy Store.

Implementation

static Future<void> openStoreListing({String? targetPackage}) async {
  // Galaxy Store is available only on Android devices.
  if (!Platform.isAndroid) return;

  await _channel
      .invokeMethod("openStoreListing", {"targetPackage": targetPackage});
}