fromDartListIncomingChatCallsCursorNullableToGraphQLListIncomingChatCallsCursorNullable function

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

Implementation

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