share static method

Future<void> share(
  1. String mediaId
)

Share a media item using the platform share sheet.

Implementation

static Future<void> share(String mediaId) async {
  _ensure();
  await _provider!.shareMedia(mediaId);
}