collectAllIndividualStyleAndEmbed method

List<OffsetValue> collectAllIndividualStyleAndEmbed(
  1. int index,
  2. int len
)

Returns all styles and Embed for each node within selection

Implementation

List<OffsetValue> collectAllIndividualStyleAndEmbed(int index, int len) {
  final res = queryChild(index);
  return (res.node as Line)
      .collectAllIndividualStylesAndEmbed(res.offset, len);
}