CustomReminderSchemaDTOInternal constructor

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

Returns a new CustomReminderSchemaDTOInternal instance.

Implementation

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