copyWith method
Implementation
PartialSession copyWith({
String? id,
String? email,
String? mobileE164,
String? mobileIso2,
String? mobileLocal,
}) {
return PartialSession(
id: id ?? this.id,
email: email ?? this.email,
mobileE164: mobileE164 ?? this.mobileE164,
mobileIso2: mobileIso2 ?? this.mobileIso2,
mobileLocal: mobileLocal ?? this.mobileLocal,
);
}