copyWith method

GetWebPageInstantView copyWith({
  1. String? url,
  2. bool? onlyLocal,
})

Implementation

GetWebPageInstantView copyWith({String? url, bool? onlyLocal}) =>
    GetWebPageInstantView(
      url: url ?? this.url,
      onlyLocal: onlyLocal ?? this.onlyLocal,
    );