Snapkit Flutter
A plugin that allows developers like you to integrate with Snapchat (using SnapKit) into your Flutter applications!
Getting Started
Android
iOS
Send to Snapchat
Send to LIVE
SnapkitFlutter.instance.send(mediaType: SnapMediaType.none);
Send with Photo
SnapkitFlutter.instance.send(
mediaType: SnapMediaType.photo,
filePath: String,
sticker: SnapSticker?,
attachmentUrl: String?
caption: String?,
);
Send with Video
SnapkitFlutter.instance.send(
mediaType: SnapMediaType.video,
filePath: String,
sticker: SnapSticker?,
attachmentUrl: String?
caption: String?,
);