UserContext constructor

UserContext({
  1. GeoLocation? lastKnownLocation,
  2. Venue? home,
  3. Venue? work,
  4. SemanticTime? semanticTime,
  5. required List<Segment?> activeSegments,
})

Implementation

UserContext({
  this.lastKnownLocation,
  this.home,
  this.work,
  this.semanticTime,
  required this.activeSegments,
});