takePhoto method

Future<List<int>?> takePhoto({
  1. bool crop = true,
})

Implementation

Future<List<int>?> takePhoto({
  bool crop = true,
}) async {
  final result = await _channel.invokeMethod<List<int>>('takePhoto', {
    'crop': crop,
  });
  return result;
}