activityRecord property

ActivityRecord get activityRecord

Activity details recorded with the log.

This returns an ActivityRecord describing the activity metadata associated with the log (sport type, effort, visibility, etc.).

Returns

Implementation

ActivityRecord get activityRecord {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LogMetadata',
    'getActivityRecord',
  );

  return ActivityRecord.fromJson(resultString['result']);
}