generateMergedContent abstract method

FutureOr<String> generateMergedContent(
  1. Stream<T> stream
)

Returns the merged content that will be written to the output file by MergingBuilder.

  • Override this method in classes extending MergingGenerator.
  • Note: stream contains objects generated for all annotated elements found in all files that match the input Glob of the MergingBuilder.

Implementation

FutureOr<String> generateMergedContent(Stream<T> stream);