fromGraphQLListNullableAttachmentIdToDartListNullableAttachmentId function

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

Implementation

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