measure method

void measure(
  1. int width,
  2. int height
)

Implementation

void measure(int width, int height) {
  if (_rendererToSeriesList != null) {
    _layoutManager.measure(width, height);
  }
}