Input$CreateFormInput constructor

Input$CreateFormInput({
  1. required String title,
  2. required String description,
  3. required Input$FormOwnerInput owner,
  4. Enum$FormType? type,
  5. Enum$FormStatus? status,
})

Implementation

factory Input$CreateFormInput({
  required String title,
  required String description,
  required Input$FormOwnerInput owner,
  Enum$FormType? type,
  Enum$FormStatus? status,
}) =>
    Input$CreateFormInput._({
      r'title': title,
      r'description': description,
      r'owner': owner,
      if (type != null) r'type': type,
      if (status != null) r'status': status,
    });