copyWith method

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

Implementation

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