fromDartListIncomingChatCallsCursorToGraphQLListIncomingChatCallsCursor function

List<String> fromDartListIncomingChatCallsCursorToGraphQLListIncomingChatCallsCursor(
  1. List<IncomingChatCallsCursor> v
)

Implementation

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