fromGraphQLListIncomingChatCallsCursorToDartListIncomingChatCallsCursor function

List<IncomingChatCallsCursor> fromGraphQLListIncomingChatCallsCursorToDartListIncomingChatCallsCursor(
  1. List<Object?> v
)

Implementation

List<IncomingChatCallsCursor>
fromGraphQLListIncomingChatCallsCursorToDartListIncomingChatCallsCursor(
  List<Object?> v,
) => v
    .map(
      (e) => fromGraphQLIncomingChatCallsCursorToDartIncomingChatCallsCursor(
        e as String,
      ),
    )
    .toList();