PlanModeAttachment constructor

PlanModeAttachment({
  1. required String reminderType,
  2. bool isSubAgent = false,
  3. required String planFilePath,
  4. required bool planExists,
})

Implementation

PlanModeAttachment({
  required this.reminderType,
  this.isSubAgent = false,
  required this.planFilePath,
  required this.planExists,
});