fromGraphQLListNullableAttachmentIdNullableToDartListNullableAttachmentIdNullable function

List<AttachmentId?>? fromGraphQLListNullableAttachmentIdNullableToDartListNullableAttachmentIdNullable(
  1. List<Object?>? v
)

Implementation

List<AttachmentId?>?
fromGraphQLListNullableAttachmentIdNullableToDartListNullableAttachmentIdNullable(
  List<Object?>? v,
) => v
    ?.map(
      (e) => fromGraphQLAttachmentIdNullableToDartAttachmentIdNullable(
        e as String?,
      ),
    )
    .toList();