timeStamp property
DateTime
get
timeStamp
Get the timestamp in UTC.
If no value is set by the user, the timestamp will be set to current time when the landmark is inserted in a landmark store.
- DateTime object in UTC.
Implementation
DateTime get timeStamp {
final OperationResult resultString = objectMethod(
pointerId,
'Landmark',
'getTimeStamp',
);
return DateTime.fromMillisecondsSinceEpoch(
resultString['result'],
isUtc: true,
);
}