getGroupLenses method
Implementation
@override
Future<String?> getGroupLenses({required List<String> groupIds}) {
final Map<String, dynamic> arguments = {'groupIds': groupIds};
// Invoke the native method to retrieve group lenses from the CameraKit.
return methodChannel.invokeMethod<String>(
OutputMethods.getGroupLenses, arguments);
}