shareImage static method

Future<void> shareImage({
  1. Uint8List? image,
  2. required ShareImageType type,
})

Implementation

static Future<void> shareImage({Uint8List? image,required ShareImageType type}) async {
  await _methodChannel.invokeMethod("share-image", {
    "image": image,
    "type": type.typeString
  });
}