aspectRatio property

double aspectRatio

Gets the current aspect ratio.

Implementation

double get aspectRatio => _aspectRatio;
void aspectRatio=(double value)

Sets the desired aspect ratio.

Implementation

set aspectRatio(double value) {
  _aspectRatio = value;
  notifyListeners();
}