fromGraphQLListChatNameNullableToDartListChatNameNullable function
Implementation
List<ChatName?> fromGraphQLListChatNameNullableToDartListChatNameNullable(
List<Object?> v,
) => v
.map((e) => fromGraphQLChatNameNullableToDartChatNameNullable(e as String?))
.toList();