copyWith method

UserStatusLastWeek copyWith({
  1. bool? byMyPrivacySettings,
})

Implementation

UserStatusLastWeek copyWith({bool? byMyPrivacySettings}) =>
    UserStatusLastWeek(
      byMyPrivacySettings: byMyPrivacySettings ?? this.byMyPrivacySettings,
    );