Input$UpdateFormInput constructor
Input$UpdateFormInput({
- required String id,
- String? title,
- String? description,
- Input$FormOwnerInput? owner,
- Enum$FormType? type,
- 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,
});