fromGraphQLListChatItemIdNullableToDartListChatItemIdNullable function

List<ChatItemId?> fromGraphQLListChatItemIdNullableToDartListChatItemIdNullable(
  1. List<Object?> v
)

Implementation

List<ChatItemId?> fromGraphQLListChatItemIdNullableToDartListChatItemIdNullable(
  List<Object?> v,
) => v
    .map(
      (e) =>
          fromGraphQLChatItemIdNullableToDartChatItemIdNullable(e as String?),
    )
    .toList();