fromGraphQLListNullableIncomingChatCallsCursorNullableToDartListNullableIncomingChatCallsCursorNullable function

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

Implementation

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