copyWith method
Creates a copy with replaced values.
Implementation
DeletedSessionResource copyWith({String? id, String? type}) {
return DeletedSessionResource(id: id ?? this.id, type: type ?? this.type);
}
Creates a copy with replaced values.
DeletedSessionResource copyWith({String? id, String? type}) {
return DeletedSessionResource(id: id ?? this.id, type: type ?? this.type);
}