fromGraphQLListIncomingChatCallsCursorNullableToDartListIncomingChatCallsCursorNullable function

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

Implementation

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