PlanCreateRequest constructor

PlanCreateRequest({
  1. required String title,
  2. required String owner,
})

Creates a new PlanCreateRequest instance.

Implementation

PlanCreateRequest({
  required this.title,
  required this.owner,
});