fromGraphQLListChatItemVersionNullableToDartListChatItemVersionNullable function

List<ChatItemVersion?> fromGraphQLListChatItemVersionNullableToDartListChatItemVersionNullable(
  1. List<Object?> v
)

Implementation

List<ChatItemVersion?>
fromGraphQLListChatItemVersionNullableToDartListChatItemVersionNullable(
  List<Object?> v,
) => v
    .map(
      (e) => fromGraphQLChatItemVersionNullableToDartChatItemVersionNullable(
        e as String?,
      ),
    )
    .toList();