openCamera static method

Future<String?> openCamera()

Implementation

static Future<String?> openCamera() async {
  return await channel.invokeMethod("openCamera", Directory.systemTemp.parent.path + "/photo${DateTime.now().toString()}.jpg");
}