fromGraphQLAttachmentIdNullableToDartAttachmentIdNullable function

AttachmentId? fromGraphQLAttachmentIdNullableToDartAttachmentIdNullable(
  1. String? v
)

Implementation

AttachmentId? fromGraphQLAttachmentIdNullableToDartAttachmentIdNullable(
  String? v,
) => v == null ? null : AttachmentId(v);