formatDslResourceInventoryJson function
Formats the full resource inventory payload as pretty JSON.
Implementation
String formatDslResourceInventoryJson(
FFProject project, {
Map<String, FFProject> libraryProjects = const {},
}) {
return const JsonEncoder.withIndent(' ').convert(
buildDslResourceInventoryJson(project, libraryProjects: libraryProjects),
);
}