copyWith method

GetExternalLink copyWith({
  1. String? link,
  2. bool? allowWriteAccess,
})

Implementation

GetExternalLink copyWith({String? link, bool? allowWriteAccess}) =>
    GetExternalLink(
      link: link ?? this.link,
      allowWriteAccess: allowWriteAccess ?? this.allowWriteAccess,
    );