fromGraphQLListChatVersionNullableToDartListChatVersionNullable function

List<ChatVersion?> fromGraphQLListChatVersionNullableToDartListChatVersionNullable(
  1. List<Object?> v
)

Implementation

List<ChatVersion?>
fromGraphQLListChatVersionNullableToDartListChatVersionNullable(
  List<Object?> v,
) =>
    v
        .map(
          (e) => fromGraphQLChatVersionNullableToDartChatVersionNullable(
            e as String?,
          ),
        )
        .toList();