fromDartListNullableChatVersionNullableToGraphQLListNullableChatVersionNullable function

List<String?>? fromDartListNullableChatVersionNullableToGraphQLListNullableChatVersionNullable(
  1. List<ChatVersion?>? v
)

Implementation

List<String?>?
fromDartListNullableChatVersionNullableToGraphQLListNullableChatVersionNullable(
  List<ChatVersion?>? v,
) =>
    v
        ?.map((e) => fromDartChatVersionNullableToGraphQLChatVersionNullable(e))
        .toList();