copyWith method
UnconfirmedSession
copyWith({
- SessionType? type,
- int? date,
- String? deviceModel,
- String? location,
Implementation
UnconfirmedSession copyWith({
SessionType? type,
int? date,
String? deviceModel,
String? location,
}) => UnconfirmedSession(
type: type ?? this.type,
date: date ?? this.date,
deviceModel: deviceModel ?? this.deviceModel,
location: location ?? this.location,
);