processSegments method

void processSegments()

Loads images for all segments asynchronously.

Implementation

void processSegments() async {
  processedSegments = await loadSegmentImages(widget.segments);
  if (mounted) {
    setState(() {});
  }
}