getIosBuildOptions method
Implementation
Future<Map<String, Object?>> getIosBuildOptions({
required String rootPath,
}) {
return _runFlutterCommand(
<String>['analyze', '--ios', '--list-build-options', rootPath],
outputMatcher: _iosBuildOptionsJsonRegex,
).then<Map<String, Object?>>(
_handleJsonOutput,
onError: _handleRunFlutterError,
);
}