UpdateNotificationState constructor

const UpdateNotificationState({
  1. @JsonKey.new(name: 'notif_id') required int notifId,
  2. @JsonKey.new(name: 'read_state') required bool readState,
  3. required String auth,
})

Implementation

const factory UpdateNotificationState({@JsonKey(name: 'notif_id') required int notifId, @JsonKey(name: 'read_state') required bool readState, required String auth}) = _UpdateNotificationState;