startCamera method

Future<int?> startCamera({
  1. double quality = 1.0,
  2. String facing = 'back',
  3. String aspectRatio = '3:4',
})

Starts the camera with the specified configuration.

Implementation

Future<int?> startCamera({
  double quality = 1.0,
  String facing = 'back',
  String aspectRatio = '3:4',
}) {
  throw UnimplementedError('startCamera() has not been implemented.');
}