copyWith method

GetInternalLinkType copyWith({
  1. String? link,
})

Implementation

GetInternalLinkType copyWith({
  String? link,
}) =>
    GetInternalLinkType(
      link: link ?? this.link,
    );