setGpsTimestamp method

Future<void> setGpsTimestamp(
  1. int timestamp
)

Sets GPS timestamp.

This will be stored in JPEG EXIF header. GPS timestamp (UTC in seconds since January 1, 1970).

Implementation

Future<void> setGpsTimestamp(int timestamp) {
  return _channel.$setGpsTimestamp(this, timestamp);
}