copyWith method
XSTSResponse
copyWith({
- String? issueInstant,
- String? notAfter,
- String? token,
- XSTSDisplayClaims? displayClaims,
Implementation
XSTSResponse copyWith({
String? issueInstant,
String? notAfter,
String? token,
XSTSDisplayClaims? displayClaims,
}) {
return XSTSResponse(
issueInstant: issueInstant ?? this.issueInstant,
notAfter: notAfter ?? this.notAfter,
token: token ?? this.token,
displayClaims: displayClaims ?? this.displayClaims,
);
}