timeStamp property
DateTime
get
timeStamp
Returns the timestamp when this landmark was created or last updated.
If a user-defined timestamp is not set, it typically reflects the insertion time into the landmark store. The returned value is in UTC.
Returns
- DateTime: The timestamp in UTC.
Implementation
DateTime get timeStamp {
final OperationResult resultString = objectMethod(
pointerId,
'Landmark',
'getTimeStamp',
);
return DateTime.fromMillisecondsSinceEpoch(
resultString['result'],
isUtc: true,
);
}