setGpsProcessingMethod method

Future<void> setGpsProcessingMethod(
  1. String processingMethod
)

Sets GPS processing method.

The method will be stored in a UTF-8 string up to 31 bytes long, in the JPEG EXIF header.

Implementation

Future<void> setGpsProcessingMethod(String processingMethod) {
  return _channel.$setGpsProcessingMethod(this, processingMethod);
}