copyWith method

UserWatch copyWith({
  1. bool? watching,
})

Implementation

UserWatch copyWith({bool? watching}) {
  return UserWatch(
    watching: watching ?? this.watching,
  );
}