androidList static method

_AndroidShareSheet androidList({
  1. required List<ShareItAndroidParameters> parameters,
})

You need to call present() to present the share sheet

Implementation

static _AndroidShareSheet androidList({required List<ShareItAndroidParameters> parameters}) {
  if (kReleaseMode && !Platform.isAndroid) {
    throw PlatformException(code: '0', message: '_AndroidShareSheet is only available on Android platform');
  }
  return _AndroidShareSheet(parameters: parameters);
}