aspectRatio property

  1. @override
double? aspectRatio
override

Implementation

@override
double? get aspectRatio {
  return _aspectRatio;
}
void aspectRatio=(double? value)

Implementation

set aspectRatio(double? value) {
  if (_aspectRatio == value) return;
  _aspectRatio = value;
  _markSelfAndParentNeedsLayout();
}