shareInstaFeed static method

Future<ShareStatus> shareInstaFeed(
  1. String backgroundImagePath
)

Implementation

static Future<ShareStatus> shareInstaFeed(String backgroundImagePath) async {
  return _convertResponseToStatus(
    await _channel.invokeMethod('share_insta_feed', { "backgroundImage": backgroundImagePath })
  );
}