fromGraphQLListNullableChatVersionNullableToDartListNullableChatVersionNullable function

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

Implementation

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