copyWith method

RemoveRecentHashtag copyWith({
  1. String? hashtag,
})

Implementation

RemoveRecentHashtag copyWith({
  String? hashtag,
}) => RemoveRecentHashtag(
  hashtag: hashtag ?? this.hashtag,
);