DraftUpdateDraftInput constructor

  1. @JsonSerializable.new(includeIfNull: false)
const DraftUpdateDraftInput({
  1. @DraftWithIdConverter() required DraftWithId draft,
  2. Map<String, dynamic>? $unknown,
})

Implementation

@JsonSerializable(includeIfNull: false)
const factory DraftUpdateDraftInput({
  @DraftWithIdConverter() required DraftWithId draft,

  Map<String, dynamic>? $unknown,
}) = _DraftUpdateDraftInput;