weights property

Specifies the weight of each views.

Implementation

UnmodifiableListView<double?> get weights => UnmodifiableListView(_weights);
void weights=(List<double?> weights)

Implementation

set weights(List<double?> weights) {
  if (const ListEquality().equals(_weights, weights)) return;
  _weights = weights;
  notifyListeners();
}