getFileContents method

List<String> getFileContents()

Collects a List of Strings representing file contents generated by the synthesizer.

Implementation

List<String> getFileContents() => synthesisResults
    .map((synthesisResult) => synthesisResult.toFileContents())
    .toList(growable: false);