copyWith method

GetInternalLink copyWith({
  1. InternalLinkType? type,
  2. bool? isHttp,
})

Implementation

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