copyWith method
FDXHateoasLink
copyWith({
- String? href,
- FDXHateoasLinkAction? action,
- String? rel,
- List<
FDXContentTypes> ? types,
Implementation
FDXHateoasLink copyWith(
{String? href,
enums.FDXHateoasLinkAction? action,
String? rel,
List<enums.FDXContentTypes>? types}) {
return FDXHateoasLink(
href: href ?? this.href,
action: action ?? this.action,
rel: rel ?? this.rel,
types: types ?? this.types);
}