copyWith method

GetRecentlyVisitedTMeUrls copyWith({
  1. String? referrer,
})

Implementation

GetRecentlyVisitedTMeUrls copyWith({
  String? referrer,
}) => GetRecentlyVisitedTMeUrls(
  referrer: referrer ?? this.referrer,
);