aspectRatio property

double get aspectRatio

Get the aspect recommended ratio (width / height)

Returns

  • The image aspect ratio

Implementation

double get aspectRatio {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'ImgFlutter',
    'getAspectRatioF',
  );

  return resultString['result'];
}