CustomReminderSchemaDTO constructor

CustomReminderSchemaDTO({
  1. int? id,
  2. int? identityId,
  3. int? projectId,
  4. String? name,
  5. int? dailySinceDueMinusDays,
  6. List<CustomReminderSchemaEntryDTO> singular = const [],
})

Returns a new CustomReminderSchemaDTO instance.

Implementation

CustomReminderSchemaDTO({
  this.id,
  this.identityId,
  this.projectId,
  this.name,
  this.dailySinceDueMinusDays,
  this.singular = const [],
});