Input$UpdateFormInput constructor

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

Implementation

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