shareImage static method

Future<void> shareImage(
  1. String filePath
)

Implementation

static Future<void> shareImage(String filePath) async {
  await _shareChannel.invokeMethod<void>('shareImage', {
    'path': filePath,
    'text': 'Check out my Snap Mind Map!',
  });
}