takePhoto method

Future<String?> takePhoto(
  1. String savePath
)

Take a photo and save to the specified path. Returns the saved file path.

Implementation

Future<String?> takePhoto(String savePath) {
  throw UnimplementedError('takePhoto() has not been implemented.');
}