copyWith method
Implementation
GetInternalLink copyWith({
InternalLinkType? type,
bool? isHttp,
}) =>
GetInternalLink(
type: type ?? this.type,
isHttp: isHttp ?? this.isHttp,
);
GetInternalLink copyWith({
InternalLinkType? type,
bool? isHttp,
}) =>
GetInternalLink(
type: type ?? this.type,
isHttp: isHttp ?? this.isHttp,
);