copyWith method

Implementation

GetChatNotificationSettingsExceptions copyWith({
  NotificationSettingsScope? scope,
  bool? compareSound,
}) =>
    GetChatNotificationSettingsExceptions(
      scope: scope ?? this.scope,
      compareSound: compareSound ?? this.compareSound,
    );