Modifying iOS/Podfile without Code Download

Project Settings

When adding libraries to my project, I need to add the following code snippet to the Podfile:

installer.pods_project.targets.each do |target|
  target.build_configurations.each do |config|
    config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES'
  end
end

However, I cannot find a way to do this within FlutterFlow without downloading the code.

What have you tried so far?

I attempted to create an external plugin (Flutter plugin) without downloading the code and tried adding this configuration to the plugin's podspec file.

Did you check FlutterFlow's Documentation for this topic?
No
3