getAspectRatio method

Future<double?> getAspectRatio({
  1. String? deviceId,
})

Get camera aspect ratio

Implementation

Future<double?> getAspectRatio({String? deviceId}) async {
  return await _platformInstance.getAspectRatio(deviceId: deviceId);
}