activityRecord property
Activity details recorded with the log.
This returns an ActivityRecord describing the activity metadata associated with the log (sport type, effort, visibility, etc.).
Returns
- An ActivityRecord instance parsed from the log metadata.
Implementation
ActivityRecord get activityRecord {
final OperationResult resultString = objectMethod(
pointerId,
'LogMetadata',
'getActivityRecord',
);
return ActivityRecord.fromJson(resultString['result']);
}