fromDartListNullableIncomingChatCallsCursorToGraphQLListNullableIncomingChatCallsCursor function

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

Implementation

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