totalEstimatedSize property

int get totalEstimatedSize

Get total estimated size of all components.

Implementation

static int get totalEstimatedSize =>
    allComponents.fold(0, (sum, c) => sum + c.estimatedSizeBytes);