reminderNotificationDurations top-level property

List<DropdownMenuItem<int>> reminderNotificationDurations
getter/setter pair

Implementation

List<DropdownMenuItem<int>> reminderNotificationDurations = [
  DropdownMenuItem<int>(
    value: 30,
    child: Text(t.time.halfHour),
  ),
  DropdownMenuItem<int>(
    value: 2 * 60,
    child: Text(t.time.twoHours),
  ),
  DropdownMenuItem<int>(
    value: 24 * 60,
    child: Text(t.time.fullDay),
  ),
];