fromDartListNullableIncomingChatCallsCursorNullableToGraphQLListNullableIncomingChatCallsCursorNullable function

List<String?>? fromDartListNullableIncomingChatCallsCursorNullableToGraphQLListNullableIncomingChatCallsCursorNullable(
  1. List<IncomingChatCallsCursor?>? v
)

Implementation

List<String?>?
fromDartListNullableIncomingChatCallsCursorNullableToGraphQLListNullableIncomingChatCallsCursorNullable(
  List<IncomingChatCallsCursor?>? v,
) => v
    ?.map(
      (e) =>
          fromDartIncomingChatCallsCursorNullableToGraphQLIncomingChatCallsCursorNullable(
            e,
          ),
    )
    .toList();