Session constructor
Session({
- required int id,
- String? clid,
- required String date,
- String? startTime,
- String? endTime,
- String? location,
- int? locationId,
- String? locationClid,
- bool? isIndoor,
- ClimbType? climbType,
- SessionType? sessionType,
- List<
String> ? partners, - Weather? weather,
- String? notes,
- RockType? rockType,
- TerrainType? terrainType,
- int? approachTime,
- bool isOngoing = false,
- Map<
String, dynamic> ? customFields,
Creates a new Session instance
Implementation
Session({
required this.id,
this.clid,
required this.date,
this.startTime,
this.endTime,
this.location,
this.locationId,
this.locationClid,
this.isIndoor,
this.climbType,
this.sessionType,
this.partners,
this.weather,
this.notes,
this.rockType,
this.terrainType,
this.approachTime,
this.isOngoing = false,
this.customFields,
});