An open-source SDK package for Flutter that provides developers with seamless integration and access to Snapchat's CameraKit features within their Flutter applications.
I thought calling this script will give me a json output of my lens list
getGroupLenses() async {
try {
final lenses = await _cameraKitFlutterImpl.getGroupLenses(
groupIds: Constants.groupIdList);
if (kDebugMode) {
print("Lenses: $lenses");
}
} on PlatformException {
if (kDebugMode) {
print("Failed to open camera kit");
}
}
}
but it make make move to other screen, is there a script to only give me a json output list?
I thought calling this script will give me a json output of my lens list
but it make make move to other screen, is there a script to only give me a json output list?