name property
      
      String
      get
      name
      
    
    
    
Implementation
String get name {
  switch (this) {
    case MotionMode.byFoot:
      return 'BY_FOOT';
    case MotionMode.byFootVisualOdometry:
      return 'BY_FOOT_VISUAL_ODOMETRY';
    default:
      return 'BY_FOOT';
  }
}